(path: Path, value: Any)
| 45 | |
| 46 | |
| 47 | def write_json(path: Path, value: Any) -> None: |
| 48 | path.parent.mkdir(parents=True, exist_ok=True) |
| 49 | path.write_text(json.dumps(value, indent=2, sort_keys=True) + "\n", encoding="utf-8") |
| 50 | |
| 51 | |
| 52 | def command_path(name: str) -> str | None: |
no outgoing calls
no test coverage detected