all: Fix cases of Python variable assigned but never used.
This fixes ruff rule F841.
This commit is contained in:
committed by
Damien George
parent
79e57473b2
commit
2a1db770ce
@@ -109,7 +109,7 @@ def reset_board(args):
|
||||
finally:
|
||||
try:
|
||||
tn.close()
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
pass
|
||||
return success
|
||||
|
||||
@@ -167,7 +167,7 @@ def verify_update(args):
|
||||
finally:
|
||||
try:
|
||||
tn.close()
|
||||
except Exception as e:
|
||||
except Exception:
|
||||
pass
|
||||
return success
|
||||
|
||||
|
||||
Reference in New Issue
Block a user