From fc77b27c3ff2ff7d412975d24787ed41364454af Mon Sep 17 00:00:00 2001 From: Eric Barrett Date: Mon, 10 Jun 2019 13:06:24 -0400 Subject: [PATCH] Enable Non-Occurring Flake8 Errors Flake8 currently ignores the following errors: H233: Python 3.x incompatible use of print operator H404: multi line docstring should start without a leading new line H405: multi line docstring summary not separated with an empty line Which do not appear currently in the repo. Enable them so that they do not get introduced Change-Id: I169969f606916b36f323f9fad0601f41fddaf8e4 Signed-off-by: Eric Barrett --- tox.ini | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index c440ab2e..549a2733 100644 --- a/tox.ini +++ b/tox.ini @@ -51,10 +51,7 @@ commands = show-source = True exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,release-tag-* # H102 Apache License format -# H233 Python 3.x incompatible use of print operator -# H404 multi line docstring should start without a leading new line -# H405 multi line docstring summary not separated with an empty line -ignore = H102,H233,H404,H405 +ignore = H102 [testenv:venv] commands = {posargs}