src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
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)

eric ide

mercurial