(cls, problem: ProblemInfo, path: Path)
| 20 | |
| 21 | @classmethod |
| 22 | def create(cls, problem: ProblemInfo, path: Path): |
| 23 | solution = Solution(problem, path) |
| 24 | solution._create_dirs() |
| 25 | return solution |
| 26 | |
| 27 | def _create_dirs(self): |
| 28 | self.animation_path().mkdir() |
no test coverage detected