1
0
espelhamento de https://github.com/arsenetar/dupeguru.git sincronizado 2025-09-11 17:58:17 +00:00

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.
Esse commit está contido em:
Andrew Senetar 2022-09-28 07:05:46 -05:00
commit 4448b999ab
Assinado por: arsenetar
ID da chave GPG: C63300DCE48AB2F1

Ver arquivo

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