From 2f0217f5f3499d43f7ac113be5a7b3aa62adedbb Mon Sep 17 00:00:00 2001 From: gengchc2 Date: Wed, 28 Sep 2016 10:59:40 +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: Iac2a251266f4a4ef1a7fbc9c162cb91245e2ed61 --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 7ff368e..ec95c5e 100644 --- a/tox.ini +++ b/tox.ini @@ -26,7 +26,6 @@ commands = python setup.py build_sphinx [flake8] # H803 skipped on purpose per list discussion. -# E123, E125 skipped as they are invalid PEP-8. max-line-length = 100 show-source = True #E302: expected 2 blank linee @@ -36,6 +35,6 @@ show-source = True #H404: multi line docstring should start without a leading new line #H405: multi line docstring summary not separated with an empty line #H904: Wrap long lines in parentheses instead of a backslash -ignore = E123,E125,H803,E302,E303,H233,H302,H404,H405,H904 +ignore = H803,E302,E303,H233,H302,H404,H405,H904 builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build