(path)
| 31 | |
| 32 | |
| 33 | def _construct_cache_dir(path): |
| 34 | import pooch |
| 35 | |
| 36 | if isinstance(path, os.PathLike): |
| 37 | path = os.fspath(path) |
| 38 | elif path is None: |
| 39 | path = pooch.os_cache(_default_cache_dir_name) |
| 40 | |
| 41 | return path |
| 42 | |
| 43 | |
| 44 | external_urls: dict = {} |
no outgoing calls
no test coverage detected
searching dependent graphs…