summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-10-06 13:25:31 +0000
committerGerrit Code Review <review@openstack.org>2015-10-06 13:25:31 +0000
commit41f19fb2950da268855c4b95155e35207d195756 (patch)
tree63cf223726c67912cb6c2a969f839a1a87a5aa8b
parente49ca2a106c417f96c018f9096b5af817c7ce813 (diff)
parent07872081c6e50b147f72d7084bb1019ce05010e3 (diff)
downloadpycadf-41f19fb2950da268855c4b95155e35207d195756.tar.gz
Merge "Document and update existing hacking violations"
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 9385341..452e361 100644
--- a/tox.ini
+++ b/tox.ini
@@ -29,7 +29,9 @@ commands = oslo_debug_helper {posargs}
[flake8]
show-source = True
-ignore = H405,H904
+# H405: Multi line docstrings should start with a one line summary followed by
+# an empty line.
+ignore = H405
exclude = .tox,dist,doc,*.egg,build,./pycadf/openstack/common
[hacking]