python-trezor/.flake8

17 lines
300 B
Plaintext
Raw Normal View History

2017-06-23 12:31:42 -07:00
[flake8]
exclude =
.tox/,
build/,
dist/,
tools/signtest.py,
trezorlib/*_pb2.py
ignore =
# F821 undefined name 'unicode',
F821,
# F401: module imported but unused
F401,
# E402: module level import not at top of file
E402,
# E501: line too long
E501