--- a/src/eric7/Plugins/PluginEricapi.py Wed May 24 10:31:09 2023 +0200 +++ b/src/eric7/Plugins/PluginEricapi.py Wed May 24 10:45:11 2023 +0200 @@ -19,23 +19,25 @@ from eric7.UI import Info # Start-Of-Header -name = "Ericapi Plugin" -author = "Detlev Offenbach <detlev@die-offenbachs.de>" -autoactivate = True -deactivateable = True -version = Info.VersionOnly -className = "EricapiPlugin" -packageName = "__core__" -shortDescription = "Show the Ericapi dialogs." -longDescription = ( - """This plugin implements the Ericapi dialogs.""" - """ Ericapi is used to generate a QScintilla API file for Python and""" - """ Ruby projects.""" -) -pyqtApi = 2 +__header__ = { + "name": "Ericapi Plugin", + "author": "Detlev Offenbach <detlev@die-offenbachs.de>", + "autoactivate": True, + "deactivateable": True, + "version": Info.VersionOnly, + "className": "EricapiPlugin", + "packageName": "__core__", + "shortDescription": "Show the Ericapi dialogs.", + "longDescription": ( + """This plugin implements the Ericapi dialogs.""" + """ Ericapi is used to generate a QScintilla API file for Python and""" + """ Ruby projects.""" + ), + "pyqtApi": 2, +} # End-Of-Header -error = "" +error = "" # noqa: U200 def exeDisplayData():