From bb8a2ac0d9642303c9ed565b49675d08ace303db Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Tue, 8 Nov 2016 14:54:43 -0800 Subject: [PATCH] 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 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 1e8ccae..f2919ff 100644 --- a/tox.ini +++ b/tox.ini @@ -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