fix flake8 warning

This commit is contained in:
Pavol Rusnak 2017-12-23 22:13:09 +01:00
parent 70e6d13c23
commit d94b68fd30
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 3 additions and 1 deletions

View File

@ -8,7 +8,7 @@ exclude =
dist/,
trezorlib/*_pb2.py
ignore =
# F821 undefined name 'unicode',
# F821 undefined name 'unicode'
F821,
# F841 local variable is assigned to but never used
F841,
@ -16,6 +16,8 @@ ignore =
F401,
# F403: used import *
F403,
# F405 'foo' may be undefined, or defined from star imports
F405,
# E241: multiple spaces after ':'
E241,
# E402: module level import not at top of file