--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -31,8 +31,11 @@ Constructor @param vcs reference to the version control object + @type Subversion @param project reference to the project object - @param parent parent widget (QWidget) + @type Project + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -101,7 +104,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) @@ -111,6 +115,7 @@ Public slot to retrieve the data entered into the dialog. @return a dictionary containing the data entered + @rtype dict """ scheme = self.protocolCombo.currentText() url = self.vcsUrlPicker.text()