5 |
5 |
6 """ |
6 """ |
7 Module implementing a file system watcher with a delay. |
7 Module implementing a file system watcher with a delay. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSignal, pyqtSlot, QFileSystemWatcher, QTimer |
10 from PyQt6.QtCore import pyqtSignal, pyqtSlot, QFileSystemWatcher, QTimer |
11 |
11 |
12 |
12 |
13 class DelayedFileWatcher(QFileSystemWatcher): |
13 class DelayedFileWatcher(QFileSystemWatcher): |
14 """ |
14 """ |
15 Class implementing a file system watcher with a delay. |
15 Class implementing a file system watcher with a delay. |