From c0237905b661cfb8c0f9ec66b41b53d5ce626fb0 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Wed, 16 Aug 2017 20:50:18 -0400 Subject: [PATCH] Ignore F401 warning (`# noqa: E402, F401` isn't being honored ion Travis??) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index ab540fa30..7c73fef70 100644 --- a/tox.ini +++ b/tox.ini @@ -13,4 +13,4 @@ commands = py.test -vv --cov Pyfa tests/ [testenv:pep8] deps = flake8 # TODO: Remove E731 and convert lambdas to defs -commands = flake8 --exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,venv,tests,.tox,build,dist,__init__.py,floatspin.py --ignore=E121,E126,E127,E128,E203,E731 service gui eos utils config.py pyfa.py --max-line-length=165 +commands = flake8 --exclude=.svn,CVS,.bzr,.hg,.git,__pycache__,venv,tests,.tox,build,dist,__init__.py,floatspin.py --ignore=E121,E126,E127,E128,E203,E731,F401 service gui eos utils config.py pyfa.py --max-line-length=165