6 """ |
6 """ |
7 Module implementing the VCS status monitor thread base class. |
7 Module implementing the VCS status monitor thread base class. |
8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 from PyQt5.QtCore import QThread, QMutex, QWaitCondition, pyqtSignal, \ |
11 from PyQt5.QtCore import ( |
12 QCoreApplication |
12 QThread, QMutex, QWaitCondition, pyqtSignal, QCoreApplication |
|
13 ) |
13 |
14 |
14 |
15 |
15 class VcsStatusMonitorThread(QThread): |
16 class VcsStatusMonitorThread(QThread): |
16 """ |
17 """ |
17 Class implementing the VCS status monitor thread base class. |
18 Class implementing the VCS status monitor thread base class. |