(prefix: str, *parts: str)
| 505 | |
| 506 | |
| 507 | def _stable_id(prefix: str, *parts: str) -> str: |
| 508 | return f"{prefix}_{_sha256_text(chr(0).join(parts))[:24]}" |
| 509 | |
| 510 | |
| 511 | def _validate_location(location: dict[str, Any], context: str) -> None: |
no test coverage detected