Ignore E129

This rule is not backed by the pep8 standard and should not be
enforced (in fact, it is contra-indicated by the standard).  It
was previously covered by E125 in an earlier version of the pep8
tool, but has since split out.

Change-Id: Ib9d39c44de29a633e02e36b8ddae87d5ec28d874
This commit is contained in:
James E. Blair 2016-11-08 14:54:43 -08:00
parent 616d56bc62
commit bb8a2ac0d9
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ commands = {posargs}
[flake8]
exclude = .venv,.tox,dist,doc,*.egg
show-source = true
# E123, E125, and H ignored intentionally in this code-base
ignore = E123,E125,H
# E123, E125, E129 and H ignored intentionally in this code-base
ignore = E123,E125,E129,H
[testenv:docs]
commands = python setup.py build_sphinx