summaryrefslogtreecommitdiff
path: root/alot/addressbook
diff options
context:
space:
mode:
authorLucas Hoffmann <l-m-h@web.de>2016-07-14 12:43:38 +0200
committerLucas Hoffmann <l-m-h@web.de>2016-12-09 11:06:31 +0100
commite2de9282a33a8906077a3d223d025367071bce6b (patch)
tree052da99e5736321e2106456031ccd280f86df499 /alot/addressbook
parent3b22ecddf6263497629b4ad910b848dec18d51f1 (diff)
Remove braces after `del` and `return`
`del` and `return` are keywords and not functions so the braces are not needed.
Diffstat (limited to 'alot/addressbook')
-rw-r--r--alot/addressbook/abook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/addressbook/abook.py b/alot/addressbook/abook.py
index ec706eb3..4110306e 100644
--- a/alot/addressbook/abook.py
+++ b/alot/addressbook/abook.py
@@ -19,7 +19,7 @@ class AbookAddressBook(AddressBook):
self._spec = os.path.join(DEFAULTSPATH, 'abook_contacts.spec')
path = os.path.expanduser(path)
self._config = read_config(path, self._spec)
- del(self._config['format'])
+ del self._config['format']
def get_contacts(self):
c = self._config