Return the URL for the SHA256SUMS.txt file.
(version: str)
| 88 | |
| 89 | |
| 90 | def get_checksums_url(version: str) -> str: |
| 91 | """Return the URL for the SHA256SUMS.txt file.""" |
| 92 | import os |
| 93 | |
| 94 | base = os.environ.get("COPILOT_CLI_DOWNLOAD_BASE_URL", _DOWNLOAD_BASE_URL) |
| 95 | return f"{base}/v{version}/SHA256SUMS.txt" |
no test coverage detected
searching dependent graphs…