Skip to content

Commit

Permalink
Update state_machine.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vkhaydarov authored Jul 12, 2023
1 parent bafe57d commit 147b586
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mtppy/state_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ def state_change(self):
self._change_state_to(StateCodes.execute)
elif self.act_state == StateCodes.starting:
self._change_state_to(StateCodes.execute)
elif selt.act_state == StateCodes.execute:

This comment has been minimized.

Copy link
@m-obi

m-obi Oct 14, 2024

Typo? Should be self.

self._change_state_to(StateCodes.completing)
elif self.act_state == StateCodes.completing:
self._change_state_to(StateCodes.completed)
elif self.act_state == StateCodes.pausing:
Expand Down

0 comments on commit 147b586

Please sign in to comment.