summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2019-06-25 15:25:53 -0700
committerTim Burke <tim.burke@gmail.com>2019-06-27 21:43:46 -0700
commit3b21157a844be5b71fba2216486c3ef412e7ae1a (patch)
treeba2467ba8103eae174daec5ed2be8e6c50adf619 /tox.ini
parent113eacf3b80f61d366b3e95b558b40f82ff728a4 (diff)
downloadpython-swiftclient-3b21157a844be5b71fba2216486c3ef412e7ae1a.tar.gz
Clean up warnings from newer flake8
Change-Id: I18a6327b3acdd4db5ae80097080c043f7c20c353
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