MCPcopy Index your code
hub / github.com/python/mypy / remove_watched_paths

Method remove_watched_paths

mypy/fswatcher.py:55–59  ·  view source on GitHub ↗
(self, paths: Iterable[str])

Source from the content-addressed store, hash-verified

53 self._paths |= set(paths)
54
55 def remove_watched_paths(self, paths: Iterable[str]) -> None:
56 for path in paths:
57 if path in self._file_data:
58 del self._file_data[path]
59 self._paths -= set(paths)
60
61 def _update(self, path: str, st: os.stat_result) -> None:
62 hash_digest = self.fs.hash_digest(path)

Callers 1

update_changedMethod · 0.95

Calls 1

setClass · 0.85

Tested by

no test coverage detected