src/eric7/Plugins/PluginVmListspace.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10437
2f70ca07f0af
diff -r b946699e9e79 -r 8bdad5699288 src/eric7/Plugins/PluginVmListspace.py
--- a/src/eric7/Plugins/PluginVmListspace.py	Wed May 24 10:31:09 2023 +0200
+++ b/src/eric7/Plugins/PluginVmListspace.py	Wed May 24 10:45:11 2023 +0200
@@ -15,22 +15,24 @@
 from eric7.UI import Info
 
 # Start-Of-Header
-name = "Listspace Plugin"
-author = "Detlev Offenbach <detlev@die-offenbachs.de>"
-autoactivate = False
-deactivateable = False
-version = Info.VersionOnly
-pluginType = "viewmanager"
-pluginTypename = "listspace"
-displayString = QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace")
-className = "VmListspacePlugin"
-packageName = "__core__"
-shortDescription = "Implements the Listspace view manager."
-longDescription = """This plugin provides the listspace view manager."""
-pyqtApi = 2
+__header__ = {
+    "name": "Listspace Plugin",
+    "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
+    "autoactivate": False,
+    "deactivateable": False,
+    "version": Info.VersionOnly,
+    "pluginType": "viewmanager",
+    "pluginTypename": "listspace",
+    "displayString": QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace"),
+    "className": "VmListspacePlugin",
+    "packageName": "__core__",
+    "shortDescription": "Implements the Listspace view manager.",
+    "longDescription": """This plugin provides the listspace view manager.""",
+    "pyqtApi": 2,
+}
 # End-Of-Header
 
-error = ""
+error = ""  # noqa: U200
 
 
 def previewPix():

eric ide

mercurial