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 |