src/eric7/PluginManager/PluginManager.py

branch
eric7
changeset 10683
779cda568acb
parent 10496
f9925e08dbce
child 10760
f702f6781b05
--- a/src/eric7/PluginManager/PluginManager.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/PluginManager/PluginManager.py	Sat Apr 20 18:01:36 2024 +0200
@@ -1383,36 +1383,36 @@
 
     def checkPluginEntry(
         self,
-        name,  # noqa: U100
-        short,  # noqa: U100
-        description,  # noqa: U100
+        _name,
+        _short,
+        _description,
         url,
-        author,  # noqa: U100
+        _author,
         version,
         filename,
-        status,  # noqa: U100
-        category,  # noqa: U100
+        _status,
+        _category,
     ):
         """
         Public method to check a plug-in's data for an update.
 
-        @param name data for the name field
+        @param _name data for the name field (unused)
         @type str
-        @param short data for the short field
+        @param _short data for the short field (unused)
         @type str
-        @param description data for the description field
+        @param _description data for the description field (unused)
         @type list of str
         @param url data for the url field
         @type str
-        @param author data for the author field
+        @param _author data for the author field (unused)
         @type str
         @param version data for the version field
         @type str
         @param filename data for the filename field
         @type str
-        @param status status of the plugin (one of stable, unstable, unknown)
+        @param _status status of the plugin (one of stable, unstable, unknown) (unused)
         @type str
-        @param category category designation of the plugin
+        @param _category category designation of the plugin (unused)
         @type str
         """
         # ignore hidden plug-ins

eric ide

mercurial