(path: Path, obj)
| 199 | |
| 200 | |
| 201 | def save_json(path: Path, obj) -> None: |
| 202 | path.write_text(json.dumps(obj, ensure_ascii=False, indent=2), encoding="utf-8") |
| 203 | |
| 204 | |
| 205 | def safe_file_stem(value: str, fallback: str = "file") -> str: |
no outgoing calls
no test coverage detected