6 """ |
6 """ |
7 Module implementing a dialog to select a list of guards. |
7 Module implementing a dialog to select a list of guards. |
8 """ |
8 """ |
9 |
9 |
10 |
10 |
11 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QListWidgetItem, \ |
11 from PyQt5.QtWidgets import ( |
12 QAbstractItemView |
12 QDialog, QDialogButtonBox, QListWidgetItem, QAbstractItemView |
|
13 ) |
13 |
14 |
14 from .Ui_HgQueuesGuardsSelectionDialog import Ui_HgQueuesGuardsSelectionDialog |
15 from .Ui_HgQueuesGuardsSelectionDialog import Ui_HgQueuesGuardsSelectionDialog |
15 |
16 |
16 |
17 |
17 class HgQueuesGuardsSelectionDialog(QDialog, Ui_HgQueuesGuardsSelectionDialog): |
18 class HgQueuesGuardsSelectionDialog(QDialog, Ui_HgQueuesGuardsSelectionDialog): |