diff -r f6881d10e995 -r 2f70ca07f0af src/eric7/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py --- a/src/eric7/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py Fri Dec 22 17:24:07 2023 +0100 +++ b/src/eric7/Plugins/DocumentationPlugins/Ericapi/EricapiExecDialog.py Fri Dec 22 19:45:17 2023 +0100 @@ -34,8 +34,10 @@ """ Constructor - @param cmdname name of the ericapi generator (string) - @param parent parent widget of this dialog (QWidget) + @param cmdname name of the ericapi 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 ericapi command. - @param args commandline arguments for ericapi program (list of strings) + @param args commandline arguments for ericapi program + @type list of str @param fn filename or dirname to be processed by ericapi 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()