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