overrides.py python
11 lines 363 B
Raw
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 3 days 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:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4 docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit. Human 3 days ago