(self, task_id)
| 213 | update_task(task) |
| 214 | |
| 215 | def get_task_from_id(self, task_id): |
| 216 | if task_id not in self.tasks: |
| 217 | for subprocess in self.subprocesses.values(): |
| 218 | task = subprocess.get_task_from_id(task_id) |
| 219 | if task is not None: |
| 220 | return task |
| 221 | return super().get_task_from_id(task_id) |
| 222 | |
| 223 | def reset_from_task_id(self, task_id, data=None, remove_subprocess=True): |
| 224 |
no outgoing calls
no test coverage detected