summaryrefslogtreecommitdiff
path: root/alot/completion/accounts.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/completion/accounts.py')
-rw-r--r--alot/completion/accounts.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/completion/accounts.py b/alot/completion/accounts.py
index 3250a7c9..8bfd7e8d 100644
--- a/alot/completion/accounts.py
+++ b/alot/completion/accounts.py
@@ -14,5 +14,4 @@ class AccountCompleter(StringlistCompleter):
accounts = settings.get_accounts()
resultlist = [formataddr((a.realname, str(a.address)))
for a in accounts]
- StringlistCompleter.__init__(self, resultlist, match_anywhere=True,
- **kwargs)
+ super().__init__(resultlist, match_anywhere = True, **kwargs)