7 Module implementing a dialog to show the output of a conda execution. |
7 Module implementing a dialog to show the output of a conda execution. |
8 """ |
8 """ |
9 |
9 |
10 import json |
10 import json |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot, QProcess, QTimer |
12 from PyQt6.QtCore import QProcess, QTimer, pyqtSlot |
13 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
13 from PyQt6.QtWidgets import QAbstractButton, QDialog, QDialogButtonBox |
14 |
14 |
|
15 from eric7 import Globals, Preferences |
15 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
16 |
17 |
17 from .Ui_CondaExecDialog import Ui_CondaExecDialog |
18 from .Ui_CondaExecDialog import Ui_CondaExecDialog |
18 |
|
19 from eric7 import Globals, Preferences |
|
20 |
19 |
21 |
20 |
22 class CondaExecDialog(QDialog, Ui_CondaExecDialog): |
21 class CondaExecDialog(QDialog, Ui_CondaExecDialog): |
23 """ |
22 """ |
24 Class implementing a dialog to show the output of a conda execution. |
23 Class implementing a dialog to show the output of a conda execution. |