--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitMergeDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitMergeDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -108,109 +108,109 @@ self.commitMessageEdit.clear() @pyqtSlot(bool) - def on_idButton_toggled(self, checked): + def on_idButton_toggled(self, _checked): """ Private slot to handle changes of the ID select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() self.__updateOK() @pyqtSlot(bool) - def on_noneButton_toggled(self, checked): + def on_noneButton_toggled(self, _checked): """ Private slot to handle changes of the None select button. - @param checked state of the button + @param _checked state of the button (unused) @type bool """ self.__generateDefaultCommitMessage() @pyqtSlot(str) - def on_idEdit_textChanged(self, txt): + def on_idEdit_textChanged(self, _txt): """ Private slot to handle changes of the Commit edit. - @param txt text of the edit + @param _txt text of the edit (unused) @type str """ self.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() 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.__generateDefaultCommitMessage() self.__updateOK() @pyqtSlot(bool) - def on_commitGroupBox_toggled(self, checked): + def on_commitGroupBox_toggled(self, _checked): """ Private slot to handle changes of the Commit select group. - @param checked state of the group + @param _checked state of the group (unused) @type bool """ self.__generateDefaultCommitMessage()