diff -r e9e7eca7efee -r bf71ee032bb4 src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py Wed Jul 13 11:16:20 2022 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.py Wed Jul 13 14:55:47 2022 +0200 @@ -18,24 +18,25 @@ Class implementing a dialog to enter options used to start a project in the repository. """ + def __init__(self, vcs, project, parent=None): """ Constructor - + @param vcs reference to the version control object @param project reference to the project object @param parent parent widget (QWidget) """ super().__init__(parent) self.setupUi(self) - + msh = self.minimumSizeHint() self.resize(max(self.width(), msh.width()), msh.height()) - + def getData(self): """ Public slot to retrieve the data entered into the dialog. - + @return a dictionary containing the data entered """ vcsdatadict = {