(file_path: Path)
| 170 | # Report Helpers |
| 171 | |
| 172 | def _read_report_lines(file_path: Path) -> List[str]: |
| 173 | if not file_path.exists(): |
| 174 | return [] |
| 175 | return file_path.read_text(encoding="utf-8").splitlines() |
| 176 | |
| 177 | |
| 178 | def _save_report(file_path: Path, lines: List[str]) -> None: |
no outgoing calls
no test coverage detected