Creates a generator for the cloned tasks of the tasks argument.
(self, tasks)
| 1885 | for group_index, task in enumerate(tasks)) |
| 1886 | |
| 1887 | def _unroll_tasks(self, tasks): |
| 1888 | """Creates a generator for the cloned tasks of the tasks argument.""" |
| 1889 | # should be refactored to: (maybe_signature(task, app=self._app, clone=True) for task in tasks) |
| 1890 | yield from (maybe_signature(task, app=self._app).clone() for task in tasks) |
| 1891 | |
| 1892 | def _freeze_unroll(self, new_tasks, group_id, chord, root_id, parent_id): |
| 1893 | """Generator for the frozen flattened group tasks. |
no test coverage detected