--- a/src/eric7/WebBrowser/Bookmarks/BookmarksImporters/BookmarksImporter.py Fri Dec 22 13:57:47 2023 +0100 +++ b/src/eric7/WebBrowser/Bookmarks/BookmarksImporters/BookmarksImporter.py Fri Dec 22 17:24:07 2023 +0100 @@ -19,8 +19,10 @@ """ Constructor - @param sourceId source ID (string) - @param parent reference to the parent object (QObject) + @param sourceId source ID + @type str + @param parent reference to the parent object + @type QObject """ super().__init__(parent) @@ -34,7 +36,8 @@ """ Public method to set the path of the bookmarks file or directory. - @param path bookmarks file or directory (string) + @param path bookmarks file or directory + @type str @exception NotImplementedError raised to indicate this method must be implemented by a subclass """ @@ -66,7 +69,8 @@ """ Public method to check for an error. - @return flag indicating an error (boolean) + @return flag indicating an error + @rtype bool """ return self._error @@ -74,6 +78,7 @@ """ Public method to get the error description. - @return error description (string) + @return error description + @rtype str """ return self._errorString