sources.py
file-level
1
files
1
commits
0
hotspots
0
🧊 dead
0
💥 blast risk
| 1 | """Closed source-id vocabulary (§HGD.4.1).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | SOURCE_IDS = frozenset( |
| 6 | { |
| 7 | "github_contents", |
| 8 | "github_meta", |
| 9 | "github_checks_advisory", |
| 10 | "musehub_read", |
| 11 | } |
| 12 | ) |
| 13 | BASELINE_SOURCE_IDS = frozenset({"github_contents", "github_meta"}) |
| 14 | OPTIONAL_SOURCE_IDS = frozenset({"github_checks_advisory", "musehub_read"}) |
| 15 | |
| 16 | |
| 17 | def is_known_source_id(source_id: str) -> bool: |
| 18 | """Return whether ``source_id`` is in the closed Auto v1 vocabulary.""" |
| 19 | return source_id in SOURCE_IDS |