(self, paths: Iterable[str])
| 45 | self._file_data[path] = data |
| 46 | |
| 47 | def add_watched_paths(self, paths: Iterable[str]) -> None: |
| 48 | for path in paths: |
| 49 | if path not in self._paths: |
| 50 | # By storing None this path will get reported as changed by |
| 51 | # find_changed if it exists. |
| 52 | self._file_data[path] = None |
| 53 | self._paths |= set(paths) |
| 54 | |
| 55 | def remove_watched_paths(self, paths: Iterable[str]) -> None: |
| 56 | for path in paths: |
no test coverage detected