Updated setup.cfg

Added ignore for W503 (this is best practice, not W504)
This commit is contained in:
Ethan Smith-Coss 2022-05-12 13:43:55 +01:00
parent 8ef1891ca6
commit b108e21296
Signed by: TheOnePath
GPG Key ID: 4E7D436CE1A0BAF1

View File

@ -41,7 +41,7 @@ testing =
clog = py.typed clog = py.typed
[flake8] [flake8]
ignore = E266, E128, E261, E221, W292 ignore = E266, E128, E261, E221, W292, W503
max-line-length = 120 max-line-length = 120
per-file-ignores = per-file-ignores =
clog/__init__.py:F401, F403 clog/__init__.py:F401, F403