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