Ignore pycodestyle W504

For now, conform to W503, however W504 is the preferred style and we
may want change to it in the future.
This commit is contained in:
Ryan P Kilby 2019-10-22 10:31:23 -07:00
parent b6fb3c38c1
commit fc3e3079fa

View File

@ -6,7 +6,7 @@ addopts=--tb=short --strict -ra
testspath = tests testspath = tests
[flake8] [flake8]
ignore = E501 ignore = E501,W504
banned-modules = json = use from rest_framework.utils import json! banned-modules = json = use from rest_framework.utils import json!
[isort] [isort]