src/eric7/WebBrowser/SpeedDial/Page.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r c712d09cc839 -r f6881d10e995 src/eric7/WebBrowser/SpeedDial/Page.py
--- a/src/eric7/WebBrowser/SpeedDial/Page.py	Fri Dec 22 13:57:47 2023 +0100
+++ b/src/eric7/WebBrowser/SpeedDial/Page.py	Fri Dec 22 17:24:07 2023 +0100
@@ -17,9 +17,12 @@
         """
         Constructor
 
-        @param url URL of the page (string)
-        @param title title of the page (string)
-        @param broken flag indicating a broken connection (boolean)
+        @param url URL of the page
+        @type str
+        @param title title of the page
+        @type str
+        @param broken flag indicating a broken connection
+        @type bool
         """
         self.url = url
         self.title = title
@@ -29,8 +32,10 @@
         """
         Special method implementing the equality operator.
 
-        @param other reference to the other page object (Page)
-        @return flag indicating equality (boolean)
+        @param other reference to the other page object
+        @type Page
+        @return flag indicating equality
+        @rtype bool
         """
         return self.title == other.title and self.url == other.url
 

eric ide

mercurial