(self, **options)
| 1436 | ) |
| 1437 | |
| 1438 | def __call__(self, **options): |
| 1439 | return self.apply_async(**options) |
| 1440 | |
| 1441 | def apply_async(self, args=None, kwargs=None, **opts): |
| 1442 | args = args if args else () |
nothing calls this directly
no test coverage detected