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

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitStashBrowserDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -223,13 +223,13 @@
         self.__getStashEntries()
 
     @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.__processBuffer()
@@ -314,13 +314,13 @@
             self.on_refreshButton_clicked()
 
     @pyqtSlot(QTreeWidgetItem, QTreeWidgetItem)
-    def on_stashList_currentItemChanged(self, current, previous):
+    def on_stashList_currentItemChanged(self, current, _previous):
         """
         Private slot called, when the current item of the stash list changes.
 
         @param current reference to the new current item
         @type QTreeWidgetItem
-        @param previous reference to the old current item
+        @param _previous reference to the old current item (unused)
         @type QTreeWidgetItem
         """
         self.statisticsList.clear()

eric ide

mercurial