summaryrefslogtreecommitdiff
path: root/alot/addressbook/external.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/addressbook/external.py
parent4d467ddda9266627f9c857142ea602d853b57c5e (diff)
Use super() where applicable.
Diffstat (limited to 'alot/addressbook/external.py')
-rw-r--r--alot/addressbook/external.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/addressbook/external.py b/alot/addressbook/external.py
index eea70cbc..cd300a42 100644
--- a/alot/addressbook/external.py
+++ b/alot/addressbook/external.py
@@ -34,7 +34,7 @@ class ExternalAddressbook(AddressBook):
according to the search string.
:type external_filtering: bool
"""
- AddressBook.__init__(self, **kwargs)
+ super().__init__(**kwargs)
self.commandline = commandline
self.regex = regex
self.reflags = reflags