(
checksums: dict[str, str],
filename: str,
checksum_path: Path,
)
| 210 | |
| 211 | |
| 212 | def _required_checksum( |
| 213 | checksums: dict[str, str], |
| 214 | filename: str, |
| 215 | checksum_path: Path, |
| 216 | ) -> str: |
| 217 | try: |
| 218 | return checksums[filename] |
| 219 | except KeyError as exc: |
| 220 | raise ValueError(f"{checksum_path}: missing checksum for {filename}") from exc |
| 221 | |
| 222 | |
| 223 | def _asset_url(release_tag: str, filename: str) -> str: |
no outgoing calls
no test coverage detected