summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJulia Kreger <juliaashleykreger@gmail.com>2018-05-08 12:21:13 -0700
committerJulia Kreger <juliaashleykreger@gmail.com>2018-05-09 06:11:30 -0700
commit530a3ed088dd2a21bbf4ca4c9e4c2a62fa2248db (patch)
tree73685925f7523ea994def0c5280b3e92ae979fc3 /tox.ini
parent6ff9a6b14c22c2cf640ba7a20828fed976b25f03 (diff)
downloadironic-530a3ed088dd2a21bbf4ca4c9e4c2a62fa2248db.tar.gz
Fix W504 errors
Also a few related errors based on some earlier investigation may have been pulled in along the lines of E305. Story: #2001985 Change-Id: Ifb2d3b481202fbd8cbb472e02de0f14f4d0809fd
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index ae7e6e2fb..2ad2a7d72 100644
--- a/tox.ini
+++ b/tox.ini
@@ -106,9 +106,9 @@ commands = {posargs}
[flake8]
# [W503] Line break before binary operator.
-# NOTE(TheJulia): Adding E305,W504,W605,W606,E501,F405 to the ignore list
+# NOTE(TheJulia): Adding E305,W605,W606,E501,F405 to the ignore list
# until we are able to clean them up in the code base.
-ignore = E129,W503,E305,W504,W605,W606,E501,F405
+ignore = E129,W503,E305,W605,W606,E501,F405
filename = *.py,app.wsgi
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build
import-order-style = pep8