--- a/src/eric7/Plugins/PluginWizardQColorDialog.py Wed May 24 10:31:09 2023 +0200 +++ b/src/eric7/Plugins/PluginWizardQColorDialog.py Wed May 24 10:45:11 2023 +0200 @@ -16,19 +16,21 @@ from eric7.UI import Info # Start-Of-Header -name = "QColorDialog Wizard Plugin" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = Info.VersionOnly -className = "ColorDialogWizard" -packageName = "__core__" -shortDescription = "Show the QColorDialog wizard." -longDescription = """This plugin shows the QColorDialog wizard.""" -pyqtApi = 2 +__header__ = { + "name": "QColorDialog Wizard Plugin", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": Info.VersionOnly, + "className": "ColorDialogWizard", + "packageName": "__core__", + "shortDescription": "Show the QColorDialog wizard.", + "longDescription": """This plugin shows the QColorDialog wizard.""", + "pyqtApi": 2, +} # End-Of-Header -error = "" +error = "" # noqa: U200 class ColorDialogWizard(QObject):