diff -r 47be220abdaf -r 779cda568acb src/eric7/Plugins/VcsPlugins/vcsGit/git.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/git.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/git.py Sat Apr 20 18:01:36 2024 +0200 @@ -230,9 +230,9 @@ Git controlled project. Therefore we always return TRUE without doing anything. - @param vcsDir name of the VCS directory + @param vcsDir name of the VCS directory (unused) @type str - @param noDialog flag indicating quiet operations + @param noDialog flag indicating quiet operations (unused) @type bool @return always True @rtype bool @@ -275,7 +275,7 @@ @type dict @param projectDir project directory @type str - @param noDialog flag indicating quiet operations + @param noDialog flag indicating quiet operations (unused) @type bool @param addAll flag indicating to add all files to the repository @type bool @@ -680,7 +680,7 @@ @param name file/directory name to be removed @type str or list of str - @param project flag indicating deletion of a project tree + @param project flag indicating deletion of a project tree (unused) @type bool @param noDialog flag indicating quiet operations @type bool @@ -1137,7 +1137,7 @@ @type dict @param dname directory to check in @type str - @param shortcut flag indicating a shortcut should be taken + @param shortcut flag indicating a shortcut should be taken (unused) @type bool @return the received dictionary completed with the VCS state or None in order to signal an error @@ -1288,16 +1288,16 @@ dia.exec() def vcsOptionsDialog( - self, project, archive, editable=False, parent=None # noqa: U100 + self, project, _archive, editable=False, parent=None # noqa: U100 ): """ Public method to get a dialog to enter repository info. @param project reference to the project object @type Project - @param archive name of the project in the repository + @param _archive name of the project in the repository (unused) @type str - @param editable flag indicating that the project name is editable + @param editable flag indicating that the project name is editable (unused) @type bool @param parent parent widget @type QWidget