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
This commit is contained in:
Masayuki Igawa
2014-09-10 15:17:47 +09:00
parent 0ade1d96d0
commit 482d357607

View File

@@ -26,12 +26,12 @@ commands = python setup.py build_sphinx
[flake8] [flake8]
# H803 skipped on purpose per list discussion. # 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 # H402 skipped because some docstrings aren't sentences
# E123 skipped because it is ignored by default in the default pep8 # E123 skipped because it is ignored by default in the default pep8
# E129 skipped because it is too limiting when combined with other rules # E129 skipped because it is too limiting when combined with other rules
# H305 skipped because it is inconsistent between python versions # H305 skipped because it is inconsistent between python versions
show-source = True show-source = True
ignore = E123,E125,H803,H402,E123,E129,H305 ignore = E125,H803,H402,E123,E129,H305
builtins = _ builtins = _
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build