Skip to content

Commit

Permalink
engine_fsm: remove call to control.timer
Browse files Browse the repository at this point in the history
There is no such property. The statement was always raising an error that was silently ignored.
  • Loading branch information
jonathanperret committed Jul 30, 2024
1 parent 1e084c7 commit 8e45d02
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/python/main/ayab/engine/engine_fsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,4 @@ def _API6_run_test(control: Control, operation: Operation) -> Output:
@staticmethod
def _API6_finished(control: Control, operation: Operation) -> Output:
control.logger.debug("State FINISHED")
try:
control.timer.stop() # type: ignore
except Exception:
pass
return Output.NONE

0 comments on commit 8e45d02

Please sign in to comment.