From 5ac2355882a18a42699bb2682231f98163bdc1e3 Mon Sep 17 00:00:00 2001 From: Kayou Date: Tue, 2 Feb 2021 14:14:36 +0100 Subject: [PATCH] ignore some flake8 errors --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7607c4a41..c25d8bf8f 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ deps = py37-{lint,invalidcode}: flake8 py37-black-{run,check}: black commands = - py37-lint: flake8 src doc data tests --ignore E402,E501 --exclude src/yunohost/vendor + py37-lint: flake8 src doc data tests --ignore E402,E501,E203,W503 --exclude src/yunohost/vendor py37-invalidcode: flake8 src data --exclude src/yunohost/tests,src/yunohost/vendor --select F py37-black-check: black --check --diff src doc data tests py37-black-run: black src doc data tests