overrides.py python
11 lines 363 B
Raw
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor ⚠ breaking 1 day ago
1 """Canonical JSON for overrides temp file (§K9.5 step 6c)."""
2
3 from __future__ import annotations
4
5 import json
6 from typing import Any
7
8
9 def canonical_overrides_json(data: dict[str, Any]) -> str:
10 """Serialize overrides with sorted keys and no insignificant whitespace."""
11 return json.dumps(data, sort_keys=True, separators=(",", ":"), ensure_ascii=False)
File History 1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab NXP-b DONE: independent BV-r2 pass + ISR (SD-17) Human minor 1 day ago