fix: Add W503 to flake8 extend-ignore

For some reason flake8 is now throwing W503, which should be disabled by
default, adding to extend-ignore fixes it, so doing that for now.
This commit is contained in:
Andrew Senetar 2022-09-28 07:05:46 -05:00
parent af1ae33598
commit 4448b999ab
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@ deps =
exclude = .tox,env,build,cocoalib,cocoa,help,./qt/dg_rc.py,cocoa/run_template.py,./pkg
max-line-length = 120
select = C,E,F,W,B,B950
extend-ignore = E203, E501
extend-ignore = E203, E501, W503