diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgBundleDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -71,41 +71,41 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) @pyqtSlot(bool) - def on_multipleButton_toggled(self, checked): + def on_multipleButton_toggled(self, _checked): """ Private slot to handle changes of the Multiple select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_tagButton_toggled(self, checked): + def on_tagButton_toggled(self, _checked): """ Private slot to handle changes of the Tag select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_branchButton_toggled(self, checked): + def on_branchButton_toggled(self, _checked): """ Private slot to handle changes of the Branch select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_bookmarkButton_toggled(self, checked): + def on_bookmarkButton_toggled(self, _checked): """ Private slot to handle changes of the Bookmark select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @@ -118,31 +118,31 @@ self.__updateOK() @pyqtSlot(str) - def on_tagCombo_editTextChanged(self, txt): + def on_tagCombo_editTextChanged(self, _txt): """ Private slot to handle changes of the Tag combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_branchCombo_editTextChanged(self, txt): + def on_branchCombo_editTextChanged(self, _txt): """ Private slot to handle changes of the Branch combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_bookmarkCombo_editTextChanged(self, txt): + def on_bookmarkCombo_editTextChanged(self, _txt): """ Private slot to handle changes of the Bookmark combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK()