src/eric7/EricWidgets/EricListSelectionDialog.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 select from a list of strings. 7 Module implementing a dialog to select from a list of strings.
8 """ 8 """
9 9
10 from PyQt6.QtCore import pyqtSlot, Qt 10 from PyQt6.QtCore import Qt, pyqtSlot
11 from PyQt6.QtWidgets import ( 11 from PyQt6.QtWidgets import (
12 QAbstractItemView,
12 QDialog, 13 QDialog,
13 QDialogButtonBox, 14 QDialogButtonBox,
14 QAbstractItemView,
15 QListWidgetItem, 15 QListWidgetItem,
16 ) 16 )
17 17
18 from .Ui_EricListSelectionDialog import Ui_EricListSelectionDialog 18 from .Ui_EricListSelectionDialog import Ui_EricListSelectionDialog
19 19

eric ide

mercurial