summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasayuki Igawa <igawa@mxs.nes.nec.co.jp>2014-09-10 15:17:47 +0900
committerMasayuki Igawa <igawa@mxs.nes.nec.co.jp>2014-09-26 14:46:49 +0900
commit482d357607bcf39a344ba253a9467bde0435dc4e (patch)
treebd6547e5d903be6a817666cca8a99525b4478b5f
parent0ade1d96d04a5ee23468884edd51460a67191e47 (diff)
downloadtempest-lib-482d357607bcf39a344ba253a9467bde0435dc4e.tar.gz
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
-rw-r--r--tox.ini4
1 files 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