PluginDocumentationSets.py

branch
eric7
changeset 86
812d4cf28c23
parent 85
8bdcb62db996
child 98
bab4585d9d63
--- a/PluginDocumentationSets.py	Sat Dec 23 15:48:46 2023 +0100
+++ b/PluginDocumentationSets.py	Sat Dec 23 16:13:31 2023 +0100
@@ -7,8 +7,8 @@
 Module implementing the QtHelp documentation provider plug-in.
 """
 
+import glob
 import os
-import glob
 
 from PyQt6.QtCore import QObject
 
@@ -66,7 +66,8 @@
         """
         Constructor
 
-        @param ui reference to the user interface object (UI.UserInterface)
+        @param ui reference to the user interface object
+        @type UserInterface
         """
         super().__init__(ui)
         self.__ui = ui
@@ -75,7 +76,8 @@
         """
         Public method to activate this plugin.
 
-        @return tuple of None and activation status (boolean)
+        @return tuple of None and activation status
+        @rtype bool
         """
         global error
         error = ""  # clear previous error
@@ -87,3 +89,6 @@
         Public method to deactivate this plugin.
         """
         pass
+
+#
+# eflag: noqa = U200

eric ide

mercurial