Files
mp-units/.flake8

13 lines
354 B
Plaintext
Raw Normal View History

2022-05-12 14:07:09 +02:00
[flake8]
max-line-length = 120
ignore =
# comparison to None should be 'if cond is None:'
E711,
# comparison to True should be 'if cond is True:' or 'if cond:'
E712,
# line break before binary operator
W503
2024-11-12 18:43:50 +01:00
per-file-ignores =
# flake8 is just plain wrong here, contradicting black
.github/generate-job-matrix.py:E225,E231