(self, sources: list[BuildSource])
| 879 | return self._find_changed(sources, changed_paths) |
| 880 | |
| 881 | def find_changed(self, sources: list[BuildSource]) -> ChangesAndRemovals: |
| 882 | changed_paths = self.fswatcher.find_changed() |
| 883 | return self._find_changed(sources, changed_paths) |
| 884 | |
| 885 | def _find_changed( |
| 886 | self, sources: list[BuildSource], changed_paths: AbstractSet[str] |
no test coverage detected