sources.py python
19 lines 535 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 7 days ago
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
File History 1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 7 days ago