--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnPropListDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -38,7 +38,9 @@ Constructor @param vcs reference to the vcs object - @param parent parent widget (QWidget) + @type Subversion + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -85,9 +87,12 @@ """ Private method to generate a properties item in the properties list. - @param path file/directory name the property applies to (string) - @param propName name of the property (string) - @param propValue value of the property (string) + @param path file/directory name the property applies to + @type str + @param propName name of the property + @type str + @param propValue value of the property + @type str """ QTreeWidgetItem(self.propsList, [path, propName, propValue]) @@ -95,8 +100,10 @@ """ Public slot to start the svn status command. - @param fn filename(s) (string or list of strings) + @param fn filename(s) + @type str or list of str @param recursive flag indicating a recursive list is requested + @type bool """ self.errorGroup.hide() @@ -162,7 +169,8 @@ """ Private slot called by a button of the button box clicked. - @param button button that was clicked (QAbstractButton) + @param button button that was clicked + @type QAbstractButton """ if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): self.close() @@ -182,7 +190,8 @@ """ Private slot to show an error message. - @param msg error message to show (string) + @param msg error message to show + @type str """ self.errorGroup.show() self.errors.insertPlainText(msg)