(path: Path, content: str)
| 15 | |
| 16 | |
| 17 | def write_file(path: Path, content: str) -> None: |
| 18 | path.parent.mkdir(parents=True, exist_ok=True) |
| 19 | path.write_text(content) |
| 20 | |
| 21 | |
| 22 | def record_dependency(calls: list[str], name: str): |
no outgoing calls
no test coverage detected
searching dependent graphs…