确保缓存目录存在。
()
| 95 | # --------------------------------------------------------------------------- |
| 96 | |
| 97 | def _ensure_cache_dir() -> None: |
| 98 | """确保缓存目录存在。""" |
| 99 | CACHE_DIR.mkdir(parents=True, exist_ok=True) |
| 100 | |
| 101 | |
| 102 | def _cache_path(group: str) -> Path: |
no outgoing calls
no test coverage detected