Disable the workflow machine.
(self, line)
| 886 | print(json.dumps(status, indent=4)) |
| 887 | |
| 888 | def do_disable(self, line): |
| 889 | """Disable the workflow machine.""" |
| 890 | status = self.machine.disable() |
| 891 | print(json.dumps(status, indent=4)) |
| 892 | |
| 893 | def do_step(self, line): |
| 894 | """Step to the next activity in the workflow machine.""" |