(self, sources: list[BuildSource])
| 866 | return messages |
| 867 | |
| 868 | def update_sources(self, sources: list[BuildSource]) -> None: |
| 869 | paths = [source.path for source in sources if source.path is not None] |
| 870 | if self.following_imports(): |
| 871 | # Filter out directories (used for namespace packages). |
| 872 | paths = [path for path in paths if self.fscache.isfile(path)] |
| 873 | self.fswatcher.add_watched_paths(paths) |
| 874 | |
| 875 | def update_changed( |
| 876 | self, sources: list[BuildSource], remove: list[str], update: list[str] |
no test coverage detected