(path: Path, data: dict[str, Any])
| 85 | |
| 86 | |
| 87 | def save_json(path: Path, data: dict[str, Any]) -> None: |
| 88 | path.write_text( |
| 89 | json.dumps(data, ensure_ascii=False, indent=2) + "\n", |
| 90 | encoding="utf-8", |
| 91 | ) |
| 92 | |
| 93 | |
| 94 | def norm_text(value: Any) -> str: |
no outgoing calls
no test coverage detected