(self, *args, **kwargs)
| 906 | |
| 907 | def generate_function(name, key=key): |
| 908 | def func(self, *args, **kwargs): |
| 909 | # dispatch to the actual worker |
| 910 | return getattr(self.worker_dict[key], name)(*args, **kwargs) |
| 911 | |
| 912 | async def async_func(self, *args, **kwargs): |
| 913 | # dispatch to the actual worker |
no outgoing calls
no test coverage detected