--- a/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/DocumentationPlugins/Ericdoc/EricdocExecDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -34,8 +34,10 @@ """ Constructor - @param cmdname name of the documentation generator (string) - @param parent parent widget of this dialog (QWidget) + @param cmdname name of the documentation generator + @type str + @param parent parent widget of this dialog + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -51,10 +53,12 @@ """ Public slot to start the ericdoc command. - @param args commandline arguments for ericdoc program (list of strings) + @param args commandline arguments for ericdoc program + @type list of str @param fn filename or dirname to be processed by ericdoc program - (string) - @return flag indicating the successful start of the process (boolean) + @type str + @return flag indicating the successful start of the process + @rtype bool """ self.errorGroup.hide() @@ -101,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.accept()