Skip to content

Commit 3ba5511

Browse files
committed
tox: Disable E501
This is more trouble than it's worth now. Black takes care of this for us. I wish I'd decided this before the blackify series :( Change-Id: Ifee786c96b6f0bcd96008fed2b3ed3257d02c07c Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
1 parent f3a51b0 commit 3ba5511

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ commands =
129129
show-source = True
130130
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,releasenotes
131131
# E203 Black will put spaces after colons in list comprehensions
132+
# E501 Black takes care of line length for us
132133
# H301 Black will put commas after imports that can't fit on one line
133134
# W503 and W504 are disabled since they're not very useful
134-
ignore = E203,H301,W503,W504
135+
ignore = E203,E501,H301,W503,W504
135136
import-order-style = pep8
136137
application_import_names = openstackclient

0 commit comments

Comments
 (0)