(path: Path)
| 1228 | } |
| 1229 | |
| 1230 | def _cache(path: Path) -> dict: |
| 1231 | with diskcache.Cache(disk=diskcache.JSONDisk, directory=path) as cache: |
| 1232 | return dict(path=path) | _stats(cache) |
| 1233 | |
| 1234 | def _creds(path: Path) -> dict: |
| 1235 | with Credentials(creds_file=path) as cache: |
no test coverage detected