返回指定分组的缓存文件路径(.tle)。
(group: str)
| 100 | |
| 101 | |
| 102 | def _cache_path(group: str) -> Path: |
| 103 | """返回指定分组的缓存文件路径(.tle)。""" |
| 104 | safe = group.replace("/", "_").replace(" ", "_") |
| 105 | return CACHE_DIR / f"{safe}.tle" |
| 106 | |
| 107 | |
| 108 | def _meta_path(group: str) -> Path: |
no outgoing calls
no test coverage detected