From e2de9282a33a8906077a3d223d025367071bce6b Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Thu, 14 Jul 2016 12:43:38 +0200 Subject: Remove braces after `del` and `return` `del` and `return` are keywords and not functions so the braces are not needed. --- alot/addressbook/abook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alot/addressbook') 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 -- cgit v1.2.3