diff -r 47be220abdaf -r 779cda568acb src/eric7/PluginManager/PluginRepositoryDialog.py --- a/src/eric7/PluginManager/PluginRepositoryDialog.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/PluginManager/PluginRepositoryDialog.py Sat Apr 20 18:01:36 2024 +0200 @@ -1138,36 +1138,36 @@ pluginsRegister = [] # list of plug-ins contained in the repository def registerPlugin( - name, # noqa: U100 - short, # noqa: U100 - description, # noqa: U100 + _name, + _short, + _description, url, - author, # noqa: U100 - version, # noqa: U100 - filename, # noqa: U100 - status, # noqa: U100 - category, # noqa: U100 + _author, + _version, + _filename, + _status, + _category, ): """ Method to register a plug-in's data. - @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 + @param _version data for the version field (unused) @type str - @param filename data for the filename field + @param _filename data for the filename field (unused) @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 """ pluginName = os.path.splitext(url.rsplit("/", 1)[1])[0]