summaryrefslogtreecommitdiff
path: root/alot/completion/commandline.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/commandline.py
parent4d467ddda9266627f9c857142ea602d853b57c5e (diff)
Use super() where applicable.
Diffstat (limited to 'alot/completion/commandline.py')
-rw-r--r--alot/completion/commandline.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/completion/commandline.py b/alot/completion/commandline.py
index 0092c8e7..866ed66f 100644
--- a/alot/completion/commandline.py
+++ b/alot/completion/commandline.py
@@ -23,6 +23,8 @@ class CommandLineCompleter(Completer):
"""
self._commandcompleter = CommandCompleter(dbman, mode, currentbuffer)
+ super().__init__()
+
@staticmethod
def get_context(line, pos):
"""