7 Module implementing the shell history dialog. |
7 Module implementing the shell history dialog. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot, Qt, QItemSelectionModel |
12 from PyQt6.QtCore import QItemSelectionModel, Qt, pyqtSlot |
13 from PyQt6.QtWidgets import QListWidgetItem, QDialog |
13 from PyQt6.QtWidgets import QDialog, QListWidgetItem |
14 |
14 |
15 from .Ui_ShellHistoryDialog import Ui_ShellHistoryDialog |
15 from .Ui_ShellHistoryDialog import Ui_ShellHistoryDialog |
16 |
16 |
17 |
17 |
18 class ShellHistoryDialog(QDialog, Ui_ShellHistoryDialog): |
18 class ShellHistoryDialog(QDialog, Ui_ShellHistoryDialog): |