diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsSubversion/SvnChangeListsDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -59,13 +59,13 @@ # changelist name, quote, : @pyqtSlot(QListWidgetItem, QListWidgetItem) - def on_changeLists_currentItemChanged(self, current, previous): + def on_changeLists_currentItemChanged(self, current, _previous): """ Private slot to handle the selection of a new item. @param current current item @type QListWidgetItem - @param previous previous current item + @param _previous previous current item (unused) @type QListWidgetItem """ self.filesList.clear() @@ -169,13 +169,13 @@ self.__finish() @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()