(self, *partial_args, **options)
| 1579 | self.subtask_type = 'group' |
| 1580 | |
| 1581 | def __call__(self, *partial_args, **options): |
| 1582 | return self.apply_async(partial_args, **options) |
| 1583 | |
| 1584 | def __or__(self, other): |
| 1585 | # group() | task -> chord |
nothing calls this directly
no test coverage detected