Return paths that have changes since the last call, in the watched set.
(self)
| 89 | return changed |
| 90 | |
| 91 | def find_changed(self) -> AbstractSet[str]: |
| 92 | """Return paths that have changes since the last call, in the watched set.""" |
| 93 | return self._find_changed(self._paths) |
| 94 | |
| 95 | def update_changed(self, remove: list[str], update: list[str]) -> AbstractSet[str]: |
| 96 | """Alternative to find_changed() given explicit changes. |
nothing calls this directly
no test coverage detected