(self, my_task)
| 118 | return True |
| 119 | |
| 120 | def _update_hook(self, my_task): |
| 121 | super()._update_hook(my_task) |
| 122 | subworkflow = my_task._get_internal_data('subworkflow') |
| 123 | if subworkflow is None: |
| 124 | self._create_subworkflow(my_task) |
| 125 | elif subworkflow.completed: |
| 126 | my_task.complete() |
| 127 | |
| 128 | def _on_subworkflow_completed(self, subworkflow, my_task): |
| 129 | # Assign variables, if so requested. |
nothing calls this directly
no test coverage detected