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