25 import Preferences |
25 import Preferences |
26 |
26 |
27 |
27 |
28 class CondaExecDialog(QDialog, Ui_CondaExecDialog): |
28 class CondaExecDialog(QDialog, Ui_CondaExecDialog): |
29 """ |
29 """ |
30 Class documentation goes here. |
30 Class implementing a dialog to show the output of a conda execution. |
31 """ |
31 """ |
32 def __init__(self, configuration, venvManager, parent=None): |
32 def __init__(self, configuration, venvManager, parent=None): |
33 """ |
33 """ |
34 Constructor |
34 Constructor |
35 |
35 |
|
36 @param configuration dictionary containing the configuration parameters |
|
37 as returned by the command configuration dialog |
|
38 @type dict |
|
39 @param venvManager reference to the virtual environment manager |
|
40 @type VirtualenvManager |
36 @param parent reference to the parent widget |
41 @param parent reference to the parent widget |
37 @type QWidget |
42 @type QWidget |
38 """ |
43 """ |
39 super(CondaExecDialog, self).__init__(parent) |
44 super(CondaExecDialog, self).__init__(parent) |
40 self.setupUi(self) |
45 self.setupUi(self) |