src/eric7/WebBrowser/Bookmarks/BookmarksImporters/__init__.py

branch
eric7
changeset 9499
dd389c57c2f0
parent 9497
8beca4047c53
child 9504
1193fc2bf192
--- a/src/eric7/WebBrowser/Bookmarks/BookmarksImporters/__init__.py	Wed Nov 09 11:22:02 2022 +0100
+++ b/src/eric7/WebBrowser/Bookmarks/BookmarksImporters/__init__.py	Wed Nov 09 11:32:13 2022 +0100
@@ -65,7 +65,6 @@
     @return tuple with an icon, readable name, name of the default bookmarks file,
         an info text, a prompt and the default directory of the bookmarks file
     @rtype tuple of (QPixmap, str, str, str, str, str)
-    @exception ValueError raised to indicate an unsupported importer
     """
     mod = getImporterModule(sourceId)
     return mod.getImporterInfo(sourceId)
@@ -81,7 +80,6 @@
     @type QObject
     @return bookmarks importer
     @rtype BookmarksImporter
-    @exception ValueError raised to indicate an unsupported importer
     """
     mod = getImporterModule(sourceId)
     return mod.createImporter(sourceId=sourceId, parent=parent)
@@ -89,7 +87,7 @@
 
 def getImporterModule(sourceId):
     """
-    Function 
+    Function to get a bookmark importer module for a given source.
 
     @param sourceId source id to get an importer module for
     @type str

eric ide

mercurial