--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -31,7 +31,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) @@ -58,7 +60,8 @@ """ Public slot to start the svn blame command. - @param fn filename to show the blame for (string) + @param fn filename to show the blame for + @type str """ self.blameList.clear() self.errorGroup.hide() @@ -102,7 +105,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() @@ -119,10 +123,14 @@ """ Private method to generate a blame item in the blame list. - @param revision revision string (string) - @param author author of the change (string) - @param lineno linenumber (string) - @param text line of text from the annotated file (string) + @param revision revision string + @type str + @param author author of the change + @type str + @param lineno linenumber + @type str + @param text line of text from the annotated file + @type str """ itm = QTreeWidgetItem( self.blameList, @@ -135,7 +143,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)