Disable check for W504

This is mutually exclusive with W503, but it seems to check for both. So
no matter where the linebreak is, the linter says its wrong. This fixes
this behavior and allows to use at least one option.
pull/23/head
Georg Krause 2021-04-23 22:08:15 +02:00
parent 6a5f54b77a
commit d4b8ff847b
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
universal=1
[flake8]
max-line-length=120
ignore: E301, E302, E401, E261, E265, E226, F401
ignore: E301, E302, E401, E261, E265, E226, F401, W504