--- a/src/eric7/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py Wed Dec 20 11:06:38 2023 +0100 +++ b/src/eric7/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py Wed Dec 20 14:58:58 2023 +0100 @@ -57,7 +57,8 @@ """ Private slot to handle changes of the service key. - @param txt entered service key (string) + @param txt entered service key + @type str """ self.testButton.setEnabled(txt != "") @@ -76,8 +77,10 @@ """ Private slot to receive the result of the service key check. - @param result flag indicating a successful check (boolean) - @param msg network error message (str) + @param result flag indicating a successful check + @type bool + @param msg network error message + @type str """ if result: self.testResultLabel.setText(self.tr("The service key is valid.")) @@ -101,7 +104,9 @@ Module function to create the configuration page. @param dlg reference to the configuration dialog - @return reference to the instantiated page (ConfigurationPageBase) + @type ConfigurationDialog + @return reference to the instantiated page + @rtype ConfigurationPageBase """ page = WebBrowserVirusTotalPage() return page