(
self, sources: list[BuildSource], remove: list[str], update: list[str]
)
| 873 | self.fswatcher.add_watched_paths(paths) |
| 874 | |
| 875 | def update_changed( |
| 876 | self, sources: list[BuildSource], remove: list[str], update: list[str] |
| 877 | ) -> ChangesAndRemovals: |
| 878 | changed_paths = self.fswatcher.update_changed(remove, update) |
| 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() |
no test coverage detected