6 """ |
6 """ |
7 Module implementing a dialog to manage the list of defined virtual |
7 Module implementing a dialog to manage the list of defined virtual |
8 environments. |
8 environments. |
9 """ |
9 """ |
10 |
10 |
11 from PyQt5.QtCore import pyqtSlot, Qt |
11 from PyQt6.QtCore import pyqtSlot, Qt |
12 from PyQt5.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView |
12 from PyQt6.QtWidgets import QDialog, QTreeWidgetItem, QHeaderView |
13 |
13 |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
14 from E5Gui.E5PathPicker import E5PathPickerModes |
15 |
15 |
16 from .Ui_VirtualenvManagerDialog import Ui_VirtualenvManagerDialog |
16 from .Ui_VirtualenvManagerDialog import Ui_VirtualenvManagerDialog |
17 |
17 |