src/eric7/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10372
1444b4bee64b
child 10439
21c28b0f9e41
diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/Preferences/ConfigurationPages/WebBrowserVirusTotalPage.py
--- 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

eric ide

mercurial