summaryrefslogtreecommitdiff
path: root/alot/settings
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/settings
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/settings')
-rw-r--r--alot/settings/manager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/settings/manager.py b/alot/settings/manager.py
index 9dfe52b0..1d6ad913 100644
--- a/alot/settings/manager.py
+++ b/alot/settings/manager.py
@@ -141,10 +141,10 @@ class SettingsManager(object):
args['abook'] = AbookAddressBook(
contacts_path, ignorecase=abook['ignorecase'])
else:
- del(args['abook'])
+ del args['abook']
cmd = args['sendmail_command']
- del(args['sendmail_command'])
+ del args['sendmail_command']
newacc = SendmailAccount(cmd, **args)
accounts.append(newacc)
return accounts