summaryrefslogtreecommitdiff
path: root/alot/completion/commandname.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/commandname.py
parent4d467ddda9266627f9c857142ea602d853b57c5e (diff)
Use super() where applicable.
Diffstat (limited to 'alot/completion/commandname.py')
-rw-r--r--alot/completion/commandname.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/completion/commandname.py b/alot/completion/commandname.py
index 5c946eb6..6f71459b 100644
--- a/alot/completion/commandname.py
+++ b/alot/completion/commandname.py
@@ -17,6 +17,8 @@ class CommandNameCompleter(Completer):
"""
self.mode = mode
+ super().__init__()
+
def complete(self, original, pos):
commandprefix = original[:pos]
logging.debug('original="%s" prefix="%s"', original, commandprefix)