(self, path: Path)
| 157 | ) |
| 158 | |
| 159 | def _mkdir(self, path: Path) -> None: |
| 160 | self._ensure_cache_dir_and_supporting_files() |
| 161 | path.mkdir(exist_ok=True, parents=True) |
| 162 | |
| 163 | def mkdir(self, name: str) -> Path: |
| 164 | class="st">"""Return a directory path object with the given name. |
no test coverage detected