summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2019-06-28 08:13:46 +0000
committerGerrit Code Review <review@openstack.org>2019-06-28 08:13:46 +0000
commit4b3e33b3c28892616d42cf3f1497dd8db63c783b (patch)
tree35e3421bf56bc0bf46f9d006f192382c88ccf9da /tox.ini
parent9021a58c240e156f54ffafdc4609868f348d3ebc (diff)
parent3b21157a844be5b71fba2216486c3ef412e7ae1a (diff)
downloadpython-swiftclient-4b3e33b3c28892616d42cf3f1497dd8db63c783b.tar.gz
Merge "Clean up warnings from newer flake8"
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 84a5419..e029efd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -79,7 +79,8 @@ commands=
# H403: multi line docstrings should end on a new line
# H404: multi line docstring should start without a leading new line
# H405: multi line docstring summary not separated with an empty line
-ignore = H101,H301,H306,H401,H403,H404,H405
+# W504: line break after binary operator
+ignore = H101,H301,H306,H401,H403,H404,H405,W504
# H106: Don’t put vim configuration in source files
# H203: Use assertIs(Not)None to check for None
enable-extensions=H106,H203