src/eric7/Plugins/PluginEricdoc.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10069
435cc5875135
--- a/src/eric7/Plugins/PluginEricdoc.py	Wed May 24 10:31:09 2023 +0200
+++ b/src/eric7/Plugins/PluginEricdoc.py	Wed May 24 10:45:11 2023 +0200
@@ -25,23 +25,25 @@
 from eric7.UI import Info
 
 # Start-Of-Header
-name = "Ericdoc Plugin"
-author = "Detlev Offenbach <detlev@die-offenbachs.de>"
-autoactivate = True
-deactivateable = True
-version = Info.VersionOnly
-className = "EricdocPlugin"
-packageName = "__core__"
-shortDescription = "Show the Ericdoc dialogs."
-longDescription = (
-    """This plugin implements the Ericdoc dialogs."""
-    """ Ericdoc is used to generate a source code documentation"""
-    """ for Python and Ruby projects."""
-)
-pyqtApi = 2
+__header__ = {
+    "name": "Ericdoc Plugin",
+    "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
+    "autoactivate": True,
+    "deactivateable": True,
+    "version": Info.VersionOnly,
+    "className": "EricdocPlugin",
+    "packageName": "__core__",
+    "shortDescription": "Show the Ericdoc dialogs.",
+    "longDescription": (
+        """This plugin implements the Ericdoc dialogs."""
+        """ Ericdoc is used to generate a source code documentation"""
+        """ for Python and Ruby projects."""
+    ),
+    "pyqtApi": 2,
+}
 # End-Of-Header
 
-error = ""
+error = ""  # noqa: U200
 
 
 def exeDisplayDataList():

eric ide

mercurial