diff -r 3ede487187f2 -r fab36645aa7d src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py --- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitRevisionsSelectionDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -65,121 +65,121 @@ self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) @pyqtSlot(bool) - def on_rev1Button_toggled(self, checked): + def on_rev1Button_toggled(self, _checked): """ Private slot to handle changes of the rev1 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_rev2Button_toggled(self, checked): + def on_rev2Button_toggled(self, _checked): """ Private slot to handle changes of the rev2 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_tag1Button_toggled(self, checked): + def on_tag1Button_toggled(self, _checked): """ Private slot to handle changes of the Tag1 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_tag2Button_toggled(self, checked): + def on_tag2Button_toggled(self, _checked): """ Private slot to handle changes of the Tag2 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_branch1Button_toggled(self, checked): + def on_branch1Button_toggled(self, _checked): """ Private slot to handle changes of the Branch1 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(bool) - def on_branch2Button_toggled(self, checked): + def on_branch2Button_toggled(self, _checked): """ Private slot to handle changes of the Branch2 select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__updateOK() @pyqtSlot(str) - def on_rev1Edit_textChanged(self, txt): + def on_rev1Edit_textChanged(self, _txt): """ Private slot to handle changes of the rev1 edit. - @param txt text of the edit + @param _txt text of the edit (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_rev2Edit_textChanged(self, txt): + def on_rev2Edit_textChanged(self, _txt): """ Private slot to handle changes of the rev2 edit. - @param txt text of the edit + @param _txt text of the edit (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_tag1Combo_editTextChanged(self, txt): + def on_tag1Combo_editTextChanged(self, _txt): """ Private slot to handle changes of the Tag1 combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_tag2Combo_editTextChanged(self, txt): + def on_tag2Combo_editTextChanged(self, _txt): """ Private slot to handle changes of the Tag2 combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_branch1Combo_editTextChanged(self, txt): + def on_branch1Combo_editTextChanged(self, _txt): """ Private slot to handle changes of the Branch1 combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_branch2Combo_editTextChanged(self, txt): + def on_branch2Combo_editTextChanged(self, _txt): """ Private slot to handle changes of the Branch2 combo. - @param txt text of the combo + @param _txt text of the combo (unused) @type str """ self.__updateOK()