1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-15 19:08:07 +00:00

flake8: make rules compatible with black

This commit is contained in:
Jan Pochyla 2018-07-03 16:11:02 +02:00
parent bf9f503c3c
commit d83c0fa932

View File

@ -1,5 +1,7 @@
[flake8]
ignore =
# E203 whitespace before ':'
E203,
# E221: multiple spaces before operator
E221,
# E241: multiple spaces after ':'
@ -13,7 +15,9 @@ ignore =
# F403: star import used, unable to detect undefined names
F403,
# F405: name may be undefined, or defined from star imports
F405
F405,
# W503: line break before binary operator
W503
[isort]
multi_line_output = 3