7 Module implementing a dialog to show some patch file statistics. |
7 Module implementing a dialog to show some patch file statistics. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt5.QtCore import Qt, QProcess |
12 from PyQt6.QtCore import Qt, QProcess |
13 from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView |
13 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView |
14 |
14 |
15 from E5Gui import E5MessageBox |
15 from E5Gui import E5MessageBox |
16 |
16 |
17 from .Ui_GitPatchStatisticsDialog import Ui_GitPatchStatisticsDialog |
17 from .Ui_GitPatchStatisticsDialog import Ui_GitPatchStatisticsDialog |
18 |
18 |