windows: Remove useless __init__ overrides.
This commit is contained in:
parent
b219c3dab7
commit
30b324cec4
2 changed files with 0 additions and 6 deletions
|
@ -15,9 +15,6 @@ class VerticalSeparator(Win):
|
|||
Just a one-column window, with just a line in it, that is
|
||||
refreshed only on resize, but never on refresh, for efficiency
|
||||
"""
|
||||
def __init__(self):
|
||||
Win.__init__(self)
|
||||
|
||||
def rewrite_line(self):
|
||||
self._win.vline(0, 0, curses.ACS_VLINE, self.height,
|
||||
to_curses_attr(get_theme().COLOR_VERTICAL_SEPARATOR))
|
||||
|
|
|
@ -309,9 +309,6 @@ class RosterWin(Win):
|
|||
return None
|
||||
|
||||
class ContactInfoWin(Win):
|
||||
def __init__(self):
|
||||
Win.__init__(self)
|
||||
|
||||
def draw_contact_info(self, contact):
|
||||
"""
|
||||
draw the contact information
|
||||
|
|
Loading…
Reference in a new issue