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

branch
eric7
changeset 10690
fab36645aa7d
parent 10458
2074b8393649
child 10922
36a90a94765c
--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitLogBrowserDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -945,13 +945,13 @@
         self.__getLogEntries(noEntries=noEntries)
 
     @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()
@@ -1808,11 +1808,11 @@
             self.__findItem(self.__findBackwards, interactive=True)
 
     @pyqtSlot(bool)
-    def on_stopCheckBox_clicked(self, checked):
+    def on_stopCheckBox_clicked(self, _checked):
         """
         Private slot called, when the stop on copy/move checkbox is clicked.
 
-        @param checked flag indicating the state of the check box
+        @param _checked flag indicating the state of the check box (unused)
         @type bool
         """
         self.vcs.getPlugin().setPreferences(

eric ide

mercurial