summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-05-28 08:48:44 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2013-06-03 08:04:07 -0500
commitabcf9db6251a2e1349ee199113cc80a136ff2f79 (patch)
treeefcb2845a4889f826e68f121d184beb5a3783163 /tox.ini
parent6372fdbf4b46f57bd14e227e7eaad88224d4c313 (diff)
downloadpython-keystoneclient-abcf9db6251a2e1349ee199113cc80a136ff2f79.tar.gz
Fix line continuations (flake8 E125, E126)
- E125: continuation line does not distinguish itself from next logical line - E126: continuation line over-indented for hanging indent Change-Id: I626a6d5d57db927e8b239f90569b5601c772f28b
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 1 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index bb4c861..c0860fb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -27,8 +27,6 @@ commands = python setup.py testr --coverage --testr-args='{posargs}'
downloadcache = ~/cache/pip
[flake8]
-# E125: continuation line does not distinguish itself from next logical line
-# E126: continuation line over-indented for hanging indent
# F401: imported but unused
# F811: redefinition of unused 'client' from line 81
# F821: undefined name
@@ -44,6 +42,6 @@ downloadcache = ~/cache/pip
# H403: multi line docstring end on new line
# H404: multi line docstring should start with a summary
# H802: git commit title
-ignore = E125,E126,F401,F811,F821,F841,F999,H201,H202,H302,H304,H306,H401,H402,H403,H404,H802
+ignore = F401,F811,F821,F841,F999,H201,H202,H302,H304,H306,H401,H402,H403,H404,H802
show-source = True
exclude = .venv,.tox,dist,doc,*egg