--- 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():