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