(path: Path, payload: dict)
| 10 | |
| 11 | |
| 12 | def write_json(path: Path, payload: dict) -> Path: |
| 13 | path.write_text(json.dumps(payload, ensure_ascii=False), encoding="utf-8") |
| 14 | return path |
| 15 | |
| 16 | |
| 17 | def run_decisions(tmp_path: Path, source_manifest: dict, figures: dict) -> dict: |