From cdfcf3c153ee7860658cf70206c0da81da561bca Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Mon, 23 Mar 2015 15:57:37 +0900 Subject: Fix one remaining E125 error and remove it from ignore list E125 continuation line does not distinguish itself from next logical line Also update the comment of H405 since multi line docstring is used frequently in unit test documentation and it seems better to hold it in the ignore list not temporarily. Change-Id: Ic24e6cebe0aa531e5a4556d3e23c752358bf3696 --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index b6c33c6..7f705d1 100644 --- a/tox.ini +++ b/tox.ini @@ -37,10 +37,8 @@ commands= downloadcache = ~/cache/pip [flake8] -# E125 continuation line does not distinguish itself from next logical line -# -# TODO Fix the following rules from hacking 0.9.x # H405 multi line docstring summary not separated with an empty line -ignore = E125,H405 +# (mutli line docstring is used in unit tests frequently) +ignore = H405 show-source = true exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools -- cgit v1.2.1