6 """ |
6 """ |
7 Module implementing the project browser helper base for Mercurial extension |
7 Module implementing the project browser helper base for Mercurial extension |
8 interfaces. |
8 interfaces. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt5.QtCore import QObject |
11 from PyQt6.QtCore import QObject |
12 from PyQt5.QtWidgets import QMenu |
12 from PyQt6.QtWidgets import QMenu |
13 |
13 |
14 |
14 |
15 class HgExtensionProjectBrowserHelper(QObject): |
15 class HgExtensionProjectBrowserHelper(QObject): |
16 """ |
16 """ |
17 Class implementing the project browser helper base for Mercurial extension |
17 Class implementing the project browser helper base for Mercurial extension |