--- a/src/eric7/Plugins/PluginWizardDotDesktop.py Wed May 24 10:31:09 2023 +0200 +++ b/src/eric7/Plugins/PluginWizardDotDesktop.py Wed May 24 10:45:11 2023 +0200 @@ -16,22 +16,24 @@ from eric7.UI import Info # Start-of-Header -name = ".desktop Wizard Plug-in" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = Info.VersionOnly -className = "DotDesktopWizard" -packageName = "__core__" -shortDescription = "Wizard for the creation of a .desktop file." -longDescription = ( - """This plug-in implements a wizard to generate code for a .desktop file.""" -) -needsRestart = False -pyqtApi = 2 +__header__ = { + "name": ".desktop Wizard Plug-in", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": Info.VersionOnly, + "className": "DotDesktopWizard", + "packageName": "__core__", + "shortDescription": "Wizard for the creation of a .desktop file.", + "longDescription": ( + """This plug-in implements a wizard to generate code for a .desktop file.""" + ), + "needsRestart": False, + "pyqtApi": 2, +} # End-of-Header -error = "" +error = "" # noqa: U200 class DotDesktopWizard(QObject):