From 482d357607bcf39a344ba253a9467bde0435dc4e Mon Sep 17 00:00:00 2001 From: Masayuki Igawa Date: Wed, 10 Sep 2014 15:17:47 +0900 Subject: [PATCH] Remove a duplicate ignore rule of pep8 There are two E123 declarations in tox.ini. However, we don't need the duplication. This commit removes one. Change-Id: I9e681b99b8b6df84ae986974ac733a380e127605 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 42d178f..0ea4e95 100644 --- a/tox.ini +++ b/tox.ini @@ -26,12 +26,12 @@ commands = python setup.py build_sphinx [flake8] # H803 skipped on purpose per list discussion. -# E123, E125 skipped as they are invalid PEP-8. +# E125 skipped as it is invalid PEP-8. # H402 skipped because some docstrings aren't sentences # E123 skipped because it is ignored by default in the default pep8 # E129 skipped because it is too limiting when combined with other rules # H305 skipped because it is inconsistent between python versions show-source = True -ignore = E123,E125,H803,H402,E123,E129,H305 +ignore = E125,H803,H402,E123,E129,H305 builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build