--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -32,7 +32,9 @@ Constructor @param vcs reference to the version control object - @param parent parent widget (QWidget) + @type Git + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -72,7 +74,8 @@ """ Private slot to handle a change of the project directory. - @param txt name of the project directory (string) + @param txt name of the project directory + @type str """ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled( bool(txt) @@ -155,7 +158,8 @@ Public slot to retrieve the data entered into the dialog. @return a tuple of a string (project directory) and a dictionary - containing the data entered. + containing the data entered + @rtype tuple of (str, Any) """ self.__saveHistory()