summaryrefslogtreecommitdiff
path: root/alot/completion/namedquery.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/completion/namedquery.py')
-rw-r--r--alot/completion/namedquery.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/completion/namedquery.py b/alot/completion/namedquery.py
index bcad5d2c..e166541b 100644
--- a/alot/completion/namedquery.py
+++ b/alot/completion/namedquery.py
@@ -15,4 +15,4 @@ class NamedQueryCompleter(StringlistCompleter):
"""
# mapping of alias to query string (dict str -> str)
nqueries = dbman.get_named_queries()
- StringlistCompleter.__init__(self, list(nqueries))
+ super().__init__(list(nqueries))