7 Module implementing a dialog showing signed changesets. |
7 Module implementing a dialog showing signed changesets. |
8 """ |
8 """ |
9 |
9 |
10 import re |
10 import re |
11 |
11 |
12 from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication |
12 from PyQt6.QtCore import pyqtSlot, Qt, QCoreApplication |
13 from PyQt5.QtWidgets import ( |
13 from PyQt6.QtWidgets import ( |
14 QDialog, QDialogButtonBox, QHeaderView, QTreeWidgetItem |
14 QDialog, QDialogButtonBox, QHeaderView, QTreeWidgetItem |
15 ) |
15 ) |
16 |
16 |
17 from .Ui_HgGpgSignaturesDialog import Ui_HgGpgSignaturesDialog |
17 from .Ui_HgGpgSignaturesDialog import Ui_HgGpgSignaturesDialog |
18 |
18 |