Get the cached CLI binary, downloading if necessary. Returns the path to the CLI binary, or None if unavailable (dev install with no pinned version, or auto-download disabled).
()
| 1014 | |
| 1015 | |
| 1016 | def _get_or_download_cli() -> str | None: |
| 1017 | """Get the cached CLI binary, downloading if necessary. |
| 1018 | |
| 1019 | Returns the path to the CLI binary, or None if unavailable (dev install |
| 1020 | with no pinned version, or auto-download disabled). |
| 1021 | """ |
| 1022 | from ._cli_download import get_or_download_cli |
| 1023 | |
| 1024 | return get_or_download_cli() |
| 1025 | |
| 1026 | |
| 1027 | def _extract_transform_callbacks( |
no test coverage detected
searching dependent graphs…