From 4963c9cf74b66b3aa67e6fa307e4278339a0c389 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Sat, 13 Aug 2016 23:43:04 +0100 Subject: [PATCH] tox: Disable F405 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 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 37e69391..41af806a 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.47.3