Resolve a single component, returning (key, license_id | None).
(key: str, comp: dict)
| 384 | |
| 385 | |
| 386 | def _resolve_one(key: str, comp: dict) -> tuple[str, str | None]: |
| 387 | """Resolve a single component, returning (key, license_id | None).""" |
| 388 | return key, resolve_component(comp) |
| 389 | |
| 390 | |
| 391 | # Concurrency: different registries can run in parallel; within a domain |
nothing calls this directly
no test coverage detected