python-trezor/.flake8

25 lines
489 B
Plaintext
Raw Normal View History

2017-06-23 12:31:42 -07:00
[flake8]
2017-07-03 08:45:56 -07:00
filename =
*.py,
trezorctl
2017-06-23 12:31:42 -07:00
exclude =
.tox/,
build/,
dist/,
trezorlib/*_pb2.py
ignore =
# F821 undefined name 'unicode',
F821,
2017-06-25 09:10:05 -07:00
# F841 local variable is assigned to but never used
F841,
2017-06-23 12:31:42 -07:00
# F401: module imported but unused
F401,
2017-07-03 08:45:56 -07:00
# E241: multiple spaces after ':'
E241,
2017-06-23 12:31:42 -07:00
# E402: module level import not at top of file
E402,
# E501: line too long
E501,
# E721: do not compare types, use 'isinstance()'
E721