--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitBundleDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -52,61 +52,61 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) @pyqtSlot(bool) - def on_revisionsButton_toggled(self, checked): + def on_revisionsButton_toggled(self, _checked): """ Private slot to handle changes of the revisions 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(str) - def on_revisionsEdit_textChanged(self, txt): + def on_revisionsEdit_textChanged(self, _txt): """ Private slot to handle changes of the Revisions edit. - @param txt text of the line edit + @param _txt text of the line edit (unused) @type str """ 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()