1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-10 06:17:16 +08:00

[flake8] Ignore W504 (line break after binary operator)

Both W504 (line break after binary operator) and W503 (line break before binary
operator) were implicitly enabled, even though conceptually they are mutually
exclusive.

W504 had over 100 hits, while W503 had none, so let's disable the former.
This commit is contained in:
Jakub Wilk 2019-04-27 21:58:45 +02:00
parent 3545d38bfb
commit 7a1f93ed8e

View File

@ -3,4 +3,4 @@ universal = True
[flake8] [flake8]
exclude = youtube_dl/extractor/__init__.py,devscripts/buildserver.py,devscripts/lazy_load_template.py,devscripts/make_issue_template.py,setup.py,build,.git,venv exclude = youtube_dl/extractor/__init__.py,devscripts/buildserver.py,devscripts/lazy_load_template.py,devscripts/make_issue_template.py,setup.py,build,.git,venv
ignore = E402,E501,E731,E741 ignore = E402,E501,W504,E731,E741