1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00

style: fix flake8 warning

This commit is contained in:
Pavol Rusnak 2018-04-04 01:22:40 +02:00
parent a6e8a37239
commit eff139e4fc
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
ignore = ignore =
# E221: multiple spaces before operator # E221: multiple spaces before operator
E221, E221,
# E241: multiple spaces after comma # E241: multiple spaces after ':'
E241, E241,
# E402: module level import not at top of file # E402: module level import not at top of file
E402, E402,

View File

@ -204,7 +204,7 @@ class signal(Syscall):
def __iter__(self): def __iter__(self):
try: try:
return (yield self) return (yield self)
except: except: # noqa: E722
self.task = None self.task = None
raise raise