(path: Path, payload: Any)
| 71 | |
| 72 | |
| 73 | def _write_json(path: Path, payload: Any) -> None: |
| 74 | path.parent.mkdir(parents=True, exist_ok=True) |
| 75 | path.write_bytes(_json_bytes(payload)) |
| 76 | |
| 77 | |
| 78 | def _generate_report_projection( |
nothing calls this directly
no test coverage detected