CondaInterface/CondaExecDialog.py

branch
conda
changeset 6678
5f1de9e59227
parent 6677
6299d69a218a
child 6679
c5f7b2e9a06d
equal deleted inserted replaced
6677:6299d69a218a 6678:5f1de9e59227
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)

eric ide

mercurial