summaryrefslogtreecommitdiff
path: root/alot/buffers/taglist.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/buffers/taglist.py')
-rw-r--r--alot/buffers/taglist.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/alot/buffers/taglist.py b/alot/buffers/taglist.py
index 55fa2fdd..d97876df 100644
--- a/alot/buffers/taglist.py
+++ b/alot/buffers/taglist.py
@@ -13,13 +13,13 @@ class TagListBuffer(Buffer):
modename = 'taglist'
- def __init__(self, ui, alltags=None, filtfun=lambda x: x):
+ def __init__(self, alltags=None, filtfun=lambda x: x):
self.filtfun = filtfun
- self.ui = ui
self.tags = alltags or []
self.isinitialized = False
self.rebuild()
- Buffer.__init__(self, ui, self.body)
+
+ super().__init__()
def rebuild(self):
if self.isinitialized: