Get the global file watch manager.
()
| 383 | |
| 384 | |
| 385 | def get_file_watch_manager() -> FileWatchManager: |
| 386 | """Get the global file watch manager.""" |
| 387 | global _file_watch_manager |
| 388 | if _file_watch_manager is None: |
| 389 | _file_watch_manager = FileWatchManager() |
| 390 | return _file_watch_manager |
| 391 | |
| 392 | |
| 393 | def reset_background(): |
no test coverage detected