--- 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