--- a/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleAddBuiltinIgnoreDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleAddBuiltinIgnoreDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -44,21 +44,21 @@ ) @pyqtSlot(str) - def on_leftEdit_textChanged(self, txt): + def on_leftEdit_textChanged(self, _txt): """ Private slot to handle a change of the text of the left side edit. - @param txt text of the line edit + @param _txt text of the line edit (unused) @type str """ self.__updateOkButton() @pyqtSlot(str) - def on_rightEdit_textChanged(self, txt): + def on_rightEdit_textChanged(self, _txt): """ Private slot to handle a change of the text of the right side edit. - @param txt text of the line edit + @param _txt text of the line edit (unused) @type str """ self.__updateOkButton()