src/eric7/Plugins/VcsPlugins/vcsGit/GitStatusDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 10922
36a90a94765c
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitStatusDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitStatusDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -405,10 +405,10 @@
         args.append("--porcelain")
         args.append("--")
         if isinstance(fn, list):
-            self.dname, fnames = self.vcs.splitPathList(fn)
+            self.dname, _fnames = self.vcs.splitPathList(fn)
             self.vcs.addArguments(args, fn)
         else:
-            self.dname, fname = self.vcs.splitPath(fn)
+            self.dname, _fname = self.vcs.splitPath(fn)
             args.append(fn)
 
         # find the root of the repo
@@ -493,13 +493,13 @@
             self.on_refreshButton_clicked()
 
     @pyqtSlot(int, QProcess.ExitStatus)
-    def __procFinished(self, exitCode, exitStatus):
+    def __procFinished(self, _exitCode, _exitStatus):
         """
         Private slot connected to the finished signal.
 
-        @param exitCode exit code of the process
+        @param _exitCode exit code of the process (unused)
         @type int
-        @param exitStatus exit status of the process
+        @param _exitStatus exit status of the process (unused)
         @type QProcess.ExitStatus
         """
         self.__finish()

eric ide

mercurial