From 1cae6f2e086bf84c2437e92e7425eecf18bd2d50 Mon Sep 17 00:00:00 2001 From: gecong1973 Date: Wed, 28 Sep 2016 11:40:58 +0800 Subject: [PATCH] Update flake8 ignore list In hacking > 0.10.0, there is no E123 and E125, so this commit to delete them. Change-Id: Ib816ef3436b9adfa6d8cbaf6eeafe8757f576caf --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index c7671e0..0a75a22 100644 --- a/tox.ini +++ b/tox.ini @@ -29,12 +29,11 @@ commands = sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenote [flake8] # H803 skipped on purpose per list discussion. -# E123, E125 skipped as they are invalid PEP-8. # H404 multi line docstring should start with a summary # H405 multi line docstring summary not separated with an empty line ## TODO(ruhe) following checks should be fixed # E721 do not compare types, use 'isinstance()' show-source = True -ignore = E123,E125,E721,H404,H405,H803 +ignore = E721,H404,H405,H803 builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build