(self)
| 72 | return self._workflow_config().draw_graph |
| 73 | |
| 74 | def reset_runtime(self) -> None: |
| 75 | self.problem = self.problem_template |
| 76 | self.history.clear() |
| 77 | self.commands.clear() |
| 78 | if self.ip_addr or self.target: |
| 79 | self.bind_target(self.ip_addr, self.target) |
| 80 | |
| 81 | def initial_state(self) -> WorkflowState: |
| 82 | try: |
nothing calls this directly
no test coverage detected