(path: Path, payload: dict)
| 12 | |
| 13 | |
| 14 | def write_json(path: Path, payload: dict) -> Path: |
| 15 | path.write_text(json.dumps(payload, ensure_ascii=False), encoding="utf-8") |
| 16 | return path |
| 17 | |
| 18 | |
| 19 | def run_lint_grounding( |
no outgoing calls
no test coverage detected