src/eric7/Plugins/PluginWizardQColorDialog.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10331
c1a2ff7e3575
diff -r b946699e9e79 -r 8bdad5699288 src/eric7/Plugins/PluginWizardQColorDialog.py
--- 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):

eric ide

mercurial