src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py
--- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py	Mon Apr 22 15:15:36 2024 +0200
+++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py	Mon Apr 22 18:23:20 2024 +0200
@@ -541,13 +541,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()
@@ -731,11 +731,11 @@
                 topItem.setHidden(topItem.text(self.__statusColumn) != txt)
 
     @pyqtSlot(QTreeWidgetItem, int)
-    def on_statusList_itemChanged(self, item, column):
+    def on_statusList_itemChanged(self, _item, column):
         """
         Private slot to act upon item changes.
 
-        @param item reference to the changed item
+        @param _item reference to the changed item (unused)
         @type QTreeWidgetItem
         @param column index of column that changed
         @type int

eric ide

mercurial