From a2b70562bced99b8b44cf430962b4f7b3823f927 Mon Sep 17 00:00:00 2001 From: matejcik Date: Fri, 11 May 2018 14:56:20 +0200 Subject: [PATCH] flake8: be stricter --- .flake8 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.flake8 b/.flake8 index a89b939558..5fd5447939 100644 --- a/.flake8 +++ b/.flake8 @@ -10,18 +10,12 @@ exclude = ignore = # F401: module imported but unused F401, - # F403: used import * - F403, - # F405 'foo' may be undefined, or defined from star imports - F405, # E241: multiple spaces after ':' E241, # E402: module level import not at top of file E402, # E501: line too long E501, - # E721: do not compare types, use 'isinstance()' - E721, # E722: do not use bare except E722, # E741: ambiguous variable name