mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-18 04:18:10 +00:00
style: fix F841 local variable is assigned to but never used
This commit is contained in:
parent
7834d06aac
commit
6bced8bb54
@ -97,7 +97,7 @@ def _step(task, value):
|
||||
result = task.throw(value)
|
||||
else:
|
||||
result = task.send(value)
|
||||
except StopIteration as e:
|
||||
except StopIteration: # as e:
|
||||
if __debug__:
|
||||
log.debug(__name__, "finish: %s", task)
|
||||
except Exception as e:
|
||||
|
@ -154,7 +154,7 @@ async def protobuf_workflow(ctx, reader, handler, *args):
|
||||
# respond with specific code and message
|
||||
await ctx.write(Failure(code=exc.code, message=exc.message))
|
||||
raise
|
||||
except Exception as exc:
|
||||
except Exception: # as exc:
|
||||
# respond with a generic code and message
|
||||
await ctx.write(
|
||||
Failure(code=FailureType.FirmwareError, message="Firmware error")
|
||||
|
Loading…
Reference in New Issue
Block a user