mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-20 20:31:06 +00:00
flake8: make rules compatible with black
This commit is contained in:
parent
bf9f503c3c
commit
d83c0fa932
@ -1,5 +1,7 @@
|
|||||||
[flake8]
|
[flake8]
|
||||||
ignore =
|
ignore =
|
||||||
|
# E203 whitespace before ':'
|
||||||
|
E203,
|
||||||
# E221: multiple spaces before operator
|
# E221: multiple spaces before operator
|
||||||
E221,
|
E221,
|
||||||
# E241: multiple spaces after ':'
|
# E241: multiple spaces after ':'
|
||||||
@ -13,7 +15,9 @@ ignore =
|
|||||||
# F403: star import used, unable to detect undefined names
|
# F403: star import used, unable to detect undefined names
|
||||||
F403,
|
F403,
|
||||||
# F405: name may be undefined, or defined from star imports
|
# F405: name may be undefined, or defined from star imports
|
||||||
F405
|
F405,
|
||||||
|
# W503: line break before binary operator
|
||||||
|
W503
|
||||||
|
|
||||||
[isort]
|
[isort]
|
||||||
multi_line_output = 3
|
multi_line_output = 3
|
||||||
|
Loading…
Reference in New Issue
Block a user