--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py Fri Dec 22 19:45:17 2023 +0100 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py Sat Dec 23 15:40:23 2023 +0100 @@ -25,7 +25,9 @@ Constructor @param vcs reference to the vcs object - @param parent reference to the parent widget (QWidget) + @type Hg + @param parent reference to the parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -44,7 +46,8 @@ """ Protected slot implementing a close event handler. - @param e close event (QCloseEvent) + @param e close event + @type QCloseEvent """ if self.__hgClient.isExecuting(): self.__hgClient.cancel() @@ -94,7 +97,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() @@ -123,9 +127,12 @@ """ Private method to generate a patch item in the list of patches. - @param revision revision number (string) - @param changeset changeset of the bookmark (string) - @param signature signature of the changeset (string) + @param revision revision number + @type str + @param changeset changeset of the bookmark + @type str + @param signature signature of the changeset + @type str """ if revision == "" and changeset == "": QTreeWidgetItem(self.signaturesList, [signature]) @@ -151,7 +158,8 @@ """ Private method to process the lines of output. - @param line output line to be processed (string) + @param line output line to be processed + @type str """ li = line.split() if li[-1][0] in "1234567890": @@ -165,7 +173,8 @@ """ Private slot to show some error. - @param out error to be shown (string) + @param out error to be shown + @type str """ self.errorGroup.show() self.errors.insertPlainText(out) @@ -208,7 +217,8 @@ """ Private slot called, when a filter expression is entered. - @param txt filter expression (string) + @param txt filter expression + @type str """ self.__filterSignatures()