1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 11:29:11 +00:00
trezor-firmware/.flake8
2017-06-25 18:10:05 +02:00

18 lines
343 B
INI

[flake8]
exclude =
.tox/,
build/,
dist/,
trezorlib/*_pb2.py
ignore =
# F821 undefined name 'unicode',
F821,
# F841 local variable is assigned to but never used
F841,
# F401: module imported but unused
F401,
# E402: module level import not at top of file
E402,
# E501: line too long
E501