(source: dict[str, Any])
| 199 | |
| 200 | |
| 201 | def stable_readme_link(source: dict[str, Any]) -> bool: |
| 202 | for key, value in link_values(source).items(): |
| 203 | if key not in README_DURABLE_LINK_KEYS: |
| 204 | continue |
| 205 | if normalize_url(value) and not transient_link(key, value): |
| 206 | return True |
| 207 | return False |
| 208 | |
| 209 | |
| 210 | def primary_url(source: dict[str, Any]) -> str: |
no test coverage detected