(path: Path, text: str)
| 11 | |
| 12 | |
| 13 | def _write(path: Path, text: str) -> Path: |
| 14 | path.parent.mkdir(parents=True, exist_ok=True) |
| 15 | path.write_text(text, encoding="utf-8") |
| 16 | return path |
| 17 | |
| 18 | |
| 19 | def _node_label(result: dict, file: str, sym: str): |
no outgoing calls
no test coverage detected