summaryrefslogtreecommitdiff
path: root/alot/completion/tags.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-01-21 09:53:40 +0100
committerAnton Khirnov <anton@khirnov.net>2021-01-21 09:53:40 +0100
commitf9b1260a6c4dec2c3b4291c7a206e04ec6b691bd (patch)
treec7ac236bff044dd8ef73ac84d75315793f8884ca /alot/completion/tags.py
parent4d467ddda9266627f9c857142ea602d853b57c5e (diff)
Use super() where applicable.
Diffstat (limited to 'alot/completion/tags.py')
-rw-r--r--alot/completion/tags.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/completion/tags.py b/alot/completion/tags.py
index b151e6f5..38b0a0cd 100644
--- a/alot/completion/tags.py
+++ b/alot/completion/tags.py
@@ -16,3 +16,5 @@ class TagsCompleter(MultipleSelectionCompleter):
"""
self._completer = TagCompleter(dbman)
self._separator = ','
+
+ super().__init__()