17 """ |
17 """ |
18 Class implementing a dialog to enter options used to start a project in the |
18 Class implementing a dialog to enter options used to start a project in the |
19 repository. |
19 repository. |
20 """ |
20 """ |
21 |
21 |
22 def __init__(self, vcs, project, parent=None): |
22 def __init__(self, parent=None): |
23 """ |
23 """ |
24 Constructor |
24 Constructor |
25 |
25 |
26 @param vcs reference to the version control object |
|
27 @type Git |
|
28 @param project reference to the project object |
|
29 @type Project |
|
30 @param parent parent widget |
26 @param parent parent widget |
31 @type QWidget |
27 @type QWidget |
32 """ |
28 """ |
33 super().__init__(parent) |
29 super().__init__(parent) |
34 self.setupUi(self) |
30 self.setupUi(self) |