(self)
| 104 | print(collector()) |
| 105 | |
| 106 | def main(self): |
| 107 | self.reset() |
| 108 | tasks = self.task_generating() |
| 109 | self.task_training(tasks) |
| 110 | self.task_collecting() |
| 111 | |
| 112 | |
| 113 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected