(path: Path)
| 1232 | return dict(path=path) | _stats(cache) |
| 1233 | |
| 1234 | def _creds(path: Path) -> dict: |
| 1235 | with Credentials(creds_file=path) as cache: |
| 1236 | return dict(path=path) | _stats(cache) |
| 1237 | |
| 1238 | def _existing(paths: list[Path]) -> list[Path]: |
| 1239 | return [p for p in paths if p.exists()] |
no test coverage detected