Starts the observer thread.
(self)
| 369 | return list(self.watched_paths) |
| 370 | |
| 371 | def start(self): |
| 372 | """Starts the observer thread.""" |
| 373 | if not self.observer.is_alive(): |
| 374 | self.observer.start() |
| 375 | info_logger("Code watcher observer thread started.") |
| 376 | |
| 377 | def stop(self): |
| 378 | """Stops the observer thread gracefully.""" |
no test coverage detected