(path: str | Path)
| 47 | |
| 48 | |
| 49 | def ensure_parent(path: str | Path) -> None: |
| 50 | Path(path).expanduser().resolve().parent.mkdir(parents=True, exist_ok=True) |
| 51 | |
| 52 | |
| 53 | def emit(payload: dict[str, Any], output_path: str | None = None) -> None: |
no outgoing calls
no test coverage detected