style: fix F841 local variable is assigned to but never used

pull/25/head
Pavol Rusnak 6 years ago
parent 7834d06aac
commit 6bced8bb54
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -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…
Cancel
Save