8 Module implementing a dialog to enter a file to be processed. |
8 Module implementing a dialog to enter a file to be processed. |
9 """ |
9 """ |
10 |
10 |
11 import os |
11 import os |
12 |
12 |
13 from PyQt5.QtCore import pyqtSlot |
13 from PyQt6.QtCore import pyqtSlot |
14 from PyQt5.QtWidgets import QDialog, QDialogButtonBox |
14 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
15 |
15 |
16 from E5Gui.E5PathPicker import E5PathPickerModes |
16 from E5Gui.E5PathPicker import E5PathPickerModes |
17 |
17 |
18 from .Ui_PipFileSelectionDialog import Ui_PipFileSelectionDialog |
18 from .Ui_PipFileSelectionDialog import Ui_PipFileSelectionDialog |
19 |
19 |