From af4e96986f6ee45e9e4ccac0b143902362a1a676 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 24 May 2013 11:36:44 -0500 Subject: Cleanup docstrings (flake8 H401, H402, H403, H404) - docstring should not start with a space (flake8 H401) - one line docstring needs punctuation (flake8 H402) - multi line docstring end on new line (flake8 H403) - multi line docstring should start with a summary (flake8 H404) Change-Id: I69b414395930bda739aa01b785ac619fa8bb7d9b --- tox.ini | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index cd97a08e..401ec901 100644 --- a/tox.ini +++ b/tox.ini @@ -32,11 +32,7 @@ commands = {posargs} show-source = true # H304: no relative imports. -# H401: docstring should not start with a space -# H402: one line docstring needs punctuation -# H403: multi line docstring end on new line -# H404: multi line docstring should start with a summary -ignore = H304,H401,H402,H403,H404 +ignore = H304 builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools,vendor -- cgit