src/eric7/Plugins/VcsPlugins/vcsGit/GitDescribeDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9616
13aa04c979d7
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
7 Module implementing a dialog to show the results of the git describe action. 7 Module implementing a dialog to show the results of the git describe action.
8 """ 8 """
9 9
10 import os 10 import os
11 11
12 from PyQt6.QtCore import pyqtSlot, QProcess, Qt, QTimer, QCoreApplication 12 from PyQt6.QtCore import QCoreApplication, QProcess, Qt, QTimer, pyqtSlot
13 from PyQt6.QtWidgets import ( 13 from PyQt6.QtWidgets import (
14 QDialog, 14 QDialog,
15 QDialogButtonBox, 15 QDialogButtonBox,
16 QHeaderView, 16 QHeaderView,
17 QLineEdit,
17 QTreeWidgetItem, 18 QTreeWidgetItem,
18 QLineEdit,
19 ) 19 )
20 20
21 from eric7 import Preferences
21 from eric7.EricWidgets import EricMessageBox 22 from eric7.EricWidgets import EricMessageBox
23 from eric7.Globals import strToQByteArray
22 24
23 from .Ui_GitDescribeDialog import Ui_GitDescribeDialog 25 from .Ui_GitDescribeDialog import Ui_GitDescribeDialog
24
25 from eric7 import Preferences
26 from eric7.Globals import strToQByteArray
27 26
28 27
29 class GitDescribeDialog(QDialog, Ui_GitDescribeDialog): 28 class GitDescribeDialog(QDialog, Ui_GitDescribeDialog):
30 """ 29 """
31 Class implementing a dialog to show the results of the git describe action. 30 Class implementing a dialog to show the results of the git describe action.

eric ide

mercurial