Runs the task with the given id. Args: task_id: the id of the task to run
(self, task_id)
| 154 | return self.tasks.get(task_id) |
| 155 | |
| 156 | def run_task_from_id(self, task_id): |
| 157 | """Runs the task with the given id. |
| 158 | |
| 159 | Args: |
| 160 | task_id: the id of the task to run |
| 161 | """ |
| 162 | task = self.get_task_from_id(task_id) |
| 163 | return task.run() |
| 164 | |
| 165 | def run_next(self, use_last_task=True, halt_on_manual=True): |
| 166 | """Runs the next task, starting from the branch containing the last completed task by default. |