diff -r 47be220abdaf -r 779cda568acb src/eric7/Plugins/VcsPlugins/vcsSubversion/subversion.py --- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/subversion.py Tue Apr 16 15:47:11 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/subversion.py Sat Apr 20 18:01:36 2024 +0200 @@ -196,9 +196,9 @@ because the respective command always works locally. 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 @@ -284,7 +284,7 @@ @type str @param noDialog flag indicating quiet operations @type bool - @param addAll flag indicating to add all files to the repository + @param addAll flag indicating to add all files to the repository (unused) @type bool @return tuple containing a flag indicating an execution without errors and a flag indicating the version controll status @@ -863,7 +863,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 @@ -1563,13 +1563,13 @@ """ self.statusCache = {} - def vcsInitConfig(self, project): # noqa: U100 + def vcsInitConfig(self, _project): """ Public method to initialize the VCS configuration. This method ensures, that an ignore file exists. - @param project reference to the project + @param _project reference to the project (unused) @type Project """ configPath = getConfigPath() @@ -1636,16 +1636,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