From 933259f67520d092d4a29d5287d823f3b08e44c3 Mon Sep 17 00:00:00 2001 From: Sergey Skripnick Date: Fri, 17 May 2013 18:18:35 +0300 Subject: [PATCH] Docstrings formatted according to pep257 Bug #1020184 Removed H404 from PEP8 ignore list. Change-Id: Iabc75281c5d92c5b399c24c9b65aca139f204b0a --- tools/run_pep8.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/run_pep8.sh b/tools/run_pep8.sh index 4c0f789f1..fa7978a53 100755 --- a/tools/run_pep8.sh +++ b/tools/run_pep8.sh @@ -8,10 +8,9 @@ echo "Running flake8 ..." # E125 continuation line does not distinguish itself from next logical line # H301 one import per line # H302 import only modules -# TODO(marun) H404 multi line docstring should start with a summary # TODO(marun) H901,902 use the not operator inline for clarity # TODO(markmcclain) H202 assertRaises Exception too broad -PEP8_IGNORE="E711,E712,E125,H301,H302,H404,H901,H902,H202" +PEP8_IGNORE="E711,E712,E125,H301,H302,H901,H902,H202" PEP8_BUILTINS="_" PEP8_EXCLUDE=".venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools" flake8 --exclude=$PEP8_EXCLUDE --ignore=$PEP8_IGNORE --show-source --builtins=$PEP8_BUILTINS . -- 2.45.2