summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorNavid Pustchi <npustchi@gmail.com>2016-04-19 22:28:01 +0000
committerNavid Pustchi <npustchi@gmail.com>2016-04-21 15:25:34 +0000
commit2c4f948db025fb276dfe32eb428a0a68ed879f57 (patch)
tree1ef35b493df91c4859d30f234672dc7297af0552 /tox.ini
parente380a3c005aa1c045bc15ef884edf3d0e20032f7 (diff)
downloadkeystone-2c4f948db025fb276dfe32eb428a0a68ed879f57.tar.gz
Fix D400 PEP257
Currently tox ignores D401. D400: First line should end with a period. This change removes it and make keystone docstring compliantwith it. Change-Id: I9a9520e69701718ff471eebbcc52199dacdd9c68
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 9537e8cbd..e942b5940 100644
--- a/tox.ini
+++ b/tox.ini
@@ -133,8 +133,7 @@ show-source = true
# D105: Missing docstring in magic method
# D203: 1 blank required before class docstring.
# D205: Blank line required between one-line summary and description.
-# D400: First line should end with a period.
-ignore = D100,D101,D102,D103,D104,D105,D203,D205,D400
+ignore = D100,D101,D102,D103,D104,D105,D203,D205
exclude=.venv,.git,.tox,build,dist,doc,*openstack/common*,*lib/python*,*egg,tools,vendor,.update-venv,*.ini,*.po,*.pot
max-complexity=24