(header=None, body=None, **kwargs)
| 2036 | |
| 2037 | @staticmethod |
| 2038 | def _unpack_args(header=None, body=None, **kwargs): |
| 2039 | # Python signatures are better at extracting keys from dicts |
| 2040 | # than manually popping things off. |
| 2041 | return (header, body), kwargs |
| 2042 | |
| 2043 | def __init__(self, header, body=None, task='celery.chord', |
| 2044 | args=None, kwargs=None, app=None, **options): |