--- a/src/eric7/MicroPython/Devices/EspDialogs/EspBackupRestoreFirmwareDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/MicroPython/Devices/EspDialogs/EspBackupRestoreFirmwareDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -155,21 +155,21 @@ self.__updateOkButton() @pyqtSlot(str) - def on_sizeComboBox_currentTextChanged(self, size): + def on_sizeComboBox_currentTextChanged(self, _size): """ Private slot handling a change of the selected firmware size. - @param size selected size text + @param _size selected size text (unused) @type str """ self.__updateOkButton() @pyqtSlot(str) - def on_firmwarePicker_textChanged(self, firmware): + def on_firmwarePicker_textChanged(self, _firmware): """ Private slot handling a change of the firmware path. - @param firmware path to the firmware + @param _firmware path to the firmware (unused) @type str """ self.__updateOkButton()