(self)
| 25 | return solution |
| 26 | |
| 27 | def _create_dirs(self): |
| 28 | self.animation_path().mkdir() |
| 29 | self.article_path().mkdir() |
| 30 | self.code_path().mkdir() |
| 31 | (self.animation_path() / 'Animation.m4v').touch() |
| 32 | (self.animation_path() / 'Animation.gif').touch() |
| 33 | |
| 34 | def _path_to(self, s: str) -> Path: |
| 35 | return self.path / s |
no test coverage detected