Skip to content

Commit

Permalink
Remove unused comma
Browse files Browse the repository at this point in the history
  • Loading branch information
oysand committed Nov 7, 2024
1 parent 7d96385 commit 2234a72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/isar/state_machine/states/idle.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _run(self) -> None:
time.sleep(self.state_machine.sleep_time)
continue

except (RobotException,) as e:
except RobotException as e:
self.logger.error(
f"Failed to get robot status because: {e.error_description}"
)
Expand Down
2 changes: 1 addition & 1 deletion src/isar/state_machine/states/offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def _run(self) -> None:
time.sleep(self.state_machine.sleep_time)
continue

except (RobotException,) as e:
except RobotException as e:
self.logger.error(
f"Failed to get robot status because: {e.error_description}"
)
Expand Down

0 comments on commit 2234a72

Please sign in to comment.