(path: Path, value: str)
| 88 | |
| 89 | |
| 90 | def write_text(path: Path, value: str) -> None: |
| 91 | path.parent.mkdir(parents=True, exist_ok=True) |
| 92 | path.write_text(value, encoding="utf-8") |
| 93 | |
| 94 | |
| 95 | def sha256_file(path: Path) -> str: |
no outgoing calls
no test coverage detected