--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionSelectionDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionSelectionDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -87,81 +87,81 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) @pyqtSlot(bool) - def on_revButton_toggled(self, checked): + def on_revButton_toggled(self, _checked): """ Private slot to handle changes of the rev 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_remoteBranchButton_toggled(self, checked): + def on_remoteBranchButton_toggled(self, _checked): """ Private slot to handle changes of the Remote Branch select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(str) - def on_revEdit_textChanged(self, txt): + def on_revEdit_textChanged(self, _txt): """ Private slot to handle changes of the rev edit. - @param txt text of the edit + @param _txt text of the 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() @pyqtSlot(str) - def on_remoteBranchCombo_editTextChanged(self, txt): + def on_remoteBranchCombo_editTextChanged(self, _txt): """ Private slot to handle changes of the Remote Branch combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK()