src/eric7/PipInterface/PipPackageDetailsDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9221
bf71ee032bb4
child 9653
e67609152c5e
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
5 5
6 """ 6 """
7 Module implementing a dialog to show details about a package. 7 Module implementing a dialog to show details about a package.
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot, Qt, QLocale 10 from PyQt6.QtCore import QLocale, Qt, pyqtSlot
11 from PyQt6.QtWidgets import ( 11 from PyQt6.QtWidgets import (
12 QAbstractButton,
12 QDialog, 13 QDialog,
13 QDialogButtonBox, 14 QDialogButtonBox,
15 QHeaderView,
16 QLabel,
14 QTreeWidgetItem, 17 QTreeWidgetItem,
15 QLabel,
16 QHeaderView,
17 QAbstractButton,
18 ) 18 )
19 19
20 from .Ui_PipPackageDetailsDialog import Ui_PipPackageDetailsDialog 20 from .Ui_PipPackageDetailsDialog import Ui_PipPackageDetailsDialog
21 21
22 22

eric ide

mercurial