--- a/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgGraftDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgGraftDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -61,31 +61,31 @@ self.__updateOk() @pyqtSlot(bool) - def on_userGroup_toggled(self, checked): + def on_userGroup_toggled(self, _checked): """ Private slot to handle changes of the user group state. - @param checked flag giving the checked state + @param _checked flag giving the checked state (unused) @type bool """ self.__updateOk() @pyqtSlot(bool) - def on_currentUserCheckBox_toggled(self, checked): + def on_currentUserCheckBox_toggled(self, _checked): """ Private slot to handle changes of the current user state. - @param checked flag giving the checked state + @param _checked flag giving the checked state (unused) @type bool """ self.__updateOk() @pyqtSlot(str) - def on_userEdit_textChanged(self, txt): + def on_userEdit_textChanged(self, _txt): """ Private slot to handle changes of the user name. - @param txt text of the edit + @param _txt text of the edit (unused) @type str """ self.__updateOk()