16 class PipPackagesInputDialog(QDialog, Ui_PipPackagesInputDialog): |
16 class PipPackagesInputDialog(QDialog, Ui_PipPackagesInputDialog): |
17 """ |
17 """ |
18 Class implementing a dialog to enter package specifications. |
18 Class implementing a dialog to enter package specifications. |
19 """ |
19 """ |
20 |
20 |
21 def __init__(self, pip, title, install=True, parent=None): |
21 def __init__(self, title, install=True, parent=None): |
22 """ |
22 """ |
23 Constructor |
23 Constructor |
24 |
24 |
25 @param pip reference to the pip object |
|
26 @type Pip |
|
27 @param title dialog title |
25 @param title dialog title |
28 @type str |
26 @type str |
29 @param install flag indicating an install action |
27 @param install flag indicating an install action |
30 @type bool |
28 @type bool |
31 @param parent reference to the parent widget |
29 @param parent reference to the parent widget |