(self, *args, **kwargs)
| 55 | """ |
| 56 | |
| 57 | def __init__(self, *args, **kwargs): |
| 58 | super().__init__(*args, **kwargs) |
| 59 | self._task_cycle = cycle(self.tasks) |
| 60 | |
| 61 | def get_next_task(self): |
| 62 | if not self.tasks: |
nothing calls this directly
no outgoing calls
no test coverage detected