(container: list[str], seen: set[str], path: str)
| 729 | |
| 730 | |
| 731 | def _append_unique(container: list[str], seen: set[str], path: str) -> None: |
| 732 | if path and path not in seen: |
| 733 | seen.add(path) |
| 734 | container.append(path) |
| 735 | |
| 736 | |
| 737 | def _classify_diff_entries(entries: list[DiffEntry]) -> dict[str, Any]: |
no outgoing calls
no test coverage detected