diff -r 2f70ca07f0af -r 4cd7e5a8b3cf src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.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 Subversion + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -71,7 +73,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) @@ -100,7 +103,8 @@ """ Private slot to handle the change of the layout checkbox. - @param checked flag indicating the state of the checkbox (boolean) + @param checked flag indicating the state of the checkbox + @type bool """ self.vcsTagLabel.setEnabled(checked) self.vcsTagEdit.setEnabled(checked) @@ -135,7 +139,8 @@ """ Private slot to handle changes of the URL. - @param txt current text of the line edit (string) + @param txt current text of the line edit + @type str """ enable = "://" not in txt self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) @@ -144,8 +149,9 @@ """ 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. + @return tuple containing the (project directory and a dictionary containing + the data entered. + @rtype tuple of (str, dict) """ scheme = self.protocolCombo.currentText() url = self.vcsUrlPicker.text()