(self, py_db, api, watch_dirs)
| 329 | |
| 330 | class FSNotifyThread(PyDBDaemonThread): |
| 331 | def __init__(self, py_db, api, watch_dirs): |
| 332 | PyDBDaemonThread.__init__(self, py_db) |
| 333 | self.api = api |
| 334 | self.name = "pydevd.FSNotifyThread" |
| 335 | self.watcher = fsnotify.Watcher() |
| 336 | self.watch_dirs = watch_dirs |
| 337 | |
| 338 | @overrides(PyDBDaemonThread._on_run) |
| 339 | def _on_run(self): |