[PATCH] tox: Disable F405

Stephen Finucane stephenfinucane at hotmail.com
Mon Aug 22 02:04:33 AEST 2016


Recent versions of tox throw a lot of errors when using star-imports.
While these warnings are generally justified, the settings files
require this. Since 'noqa'-ing the offending lines would be rather
arduous, simply disable the warning instead.

Signed-off-by: Stephen Finucane <stephenfinucane at hotmail.com>
---
 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tox.ini b/tox.ini
index 37e6939..41af806 100644
--- a/tox.ini
+++ b/tox.ini
@@ -27,7 +27,7 @@ deps = flake8
 commands = flake8 {posargs} patchwork patchwork/bin/pwclient
 
 [flake8]
-ignore = E129
+ignore = E129, F405
 exclude = ./patchwork/migrations
 
 [testenv:lint]
-- 
2.7.4



More information about the Patchwork mailing list