fix: bugs introduced by the flake8 recommendations fixed and those warnings are ignored from now on

This commit is contained in:
Mateusz Pusz
2024-04-17 11:40:24 +01:00
parent 4c9570e3ba
commit 94b4d0a3e3
2 changed files with 10 additions and 3 deletions

View File

@@ -1,2 +1,9 @@
[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