(dir_name: str, freq: str = None)
| 321 | |
| 322 | @staticmethod |
| 323 | def get_cache_dir(dir_name: str, freq: str = None) -> Path: |
| 324 | cache_dir = Path(C.dpm.get_data_uri(freq)).joinpath(dir_name) |
| 325 | cache_dir.mkdir(parents=True, exist_ok=True) |
| 326 | return cache_dir |
| 327 | |
| 328 | |
| 329 | class ExpressionCache(BaseProviderCache): |
nothing calls this directly
no test coverage detected