From f9b1260a6c4dec2c3b4291c7a206e04ec6b691bd Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 21 Jan 2021 09:53:40 +0100 Subject: Use super() where applicable. --- alot/completion/commandname.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'alot/completion/commandname.py') 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) -- cgit v1.2.3