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. --- extra/tagsections_convert.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extra') diff --git a/extra/tagsections_convert.py b/extra/tagsections_convert.py index 3a73f60f..e6fff161 100755 --- a/extra/tagsections_convert.py +++ b/extra/tagsections_convert.py @@ -62,14 +62,14 @@ if __name__ == "__main__": if not is_256(fg): att[2] = fg att[4] = fg - del(sec['fg']) + del sec['fg'] if 'bg' in sec: bg = sec['bg'] if not is_256(bg): att[3] = bg att[5] = bg - del(sec['bg']) + del sec['bg'] sec['normal'] = att if sec.get('hidden'): -- cgit v1.2.3