diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesRenamePatchDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -51,31 +51,31 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enable) @pyqtSlot(str) - def on_nameEdit_textChanged(self, txt): + def on_nameEdit_textChanged(self, _txt): """ Private slot to handle changes of the new name. - @param txt text of the edit + @param _txt text of the edit (unused) @type str """ self.__updateUI() @pyqtSlot(bool) - def on_namedButton_toggled(self, checked): + def on_namedButton_toggled(self, _checked): """ Private slot to handle changes of the selection method. - @param checked state of the check box + @param _checked state of the check box (unused) @type bool """ self.__updateUI() @pyqtSlot(int) - def on_nameCombo_currentIndexChanged(self, index): + def on_nameCombo_currentIndexChanged(self, _index): """ Private slot to handle changes of the selected patch name. - @param index current index + @param _index current index (unused) @type int """ self.__updateUI()