Step to the next activity in the workflow machine.
(self, line)
| 891 | print(json.dumps(status, indent=4)) |
| 892 | |
| 893 | def do_step(self, line): |
| 894 | """Step to the next activity in the workflow machine.""" |
| 895 | status = self.machine.step() |
| 896 | print(json.dumps(status, indent=4)) |
| 897 | |
| 898 | def do_breakpoint(self, line): |
| 899 | """Handle breakpoint commands.""" |