--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnPropSetDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -23,7 +23,8 @@ """ Constructor - @param parent parent widget (QWidget) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -34,9 +35,9 @@ """ Public slot used to retrieve the data entered into the dialog. - @return tuple of three values giving the property name, a flag - indicating a file was selected and the text of the property - or the selected filename. (string, boolean, string) + @return tuple containing the property name, a flag indicating a file was + selected and the text of the property or the selected filename + @rtype tuple of (str, bool, str) """ if self.fileRadioButton.isChecked(): return (self.propNameEdit.text(), True, self.propFilePicker.text())