From 03a561883c9f991c4fad3a48ae5ebcb35531e7dc Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki Date: Fri, 30 Sep 2016 20:31:56 +0900 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: I66f53f46337d4206a269f2e09822bf31d8433edf --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 11a0ef78..ca936b18 100644 --- a/tox.ini +++ b/tox.ini @@ -39,10 +39,8 @@ commands = python setup.py build_sphinx [flake8] # H803 skipped on purpose per list discussion. -# E123, E125 skipped as they are invalid PEP-8. - show-source = True -ignore = E123,E125,H803 +ignore = H803 builtins = _ exclude=.venv,.git,.tox,dist,*openstack/common*,*lib/python*,*egg,build,*autogenerate_config_docs/venv,*autogenerate_config_docs/sources # 28 is currently the most complex thing we have