src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py

branch
eric7
changeset 10683
779cda568acb
parent 10517
aecd5a8c958c
child 11006
a671918232f3
diff -r 47be220abdaf -r 779cda568acb src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py
--- a/src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsPySvn/subversion.py	Sat Apr 20 18:01:36 2024 +0200
@@ -186,9 +186,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
@@ -274,7 +274,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
@@ -951,7 +951,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
@@ -1594,7 +1594,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
@@ -1750,14 +1750,14 @@
         """
         self.statusCache = {}
 
-    def vcsInitConfig(self, project):  # noqa: U100
+    def vcsInitConfig(self, _project):
         """
         Public method to initialize the VCS configuration.
 
         This method ensures, that eric specific files and directories are
         ignored.
 
-        @param project reference to the project
+        @param _project reference to the project (unused)
         @type Project
         """
         configPath = getConfigPath()
@@ -1831,16 +1831,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

eric ide

mercurial