diff -r 3ede487187f2 -r fab36645aa7d src/eric7/MicroPython/ConnectionSelectionDialog.py --- a/src/eric7/MicroPython/ConnectionSelectionDialog.py Mon Apr 22 15:15:36 2024 +0200 +++ b/src/eric7/MicroPython/ConnectionSelectionDialog.py Mon Apr 22 18:23:20 2024 +0200 @@ -81,21 +81,21 @@ ) @pyqtSlot(str) - def on_portNameComboBox_currentTextChanged(self, txt): + def on_portNameComboBox_currentTextChanged(self, _txt): """ Private slot to handle the selection of a port name. - @param txt selected port + @param _txt selected port (unused) @type str """ self.__updateOK() @pyqtSlot(str) - def on_deviceTypeComboBox_currentTextChanged(self, txt): + def on_deviceTypeComboBox_currentTextChanged(self, _txt): """ Private slot to handle the selection of a device type. - @param txt selected device description + @param _txt selected device description (unused) @type str """ self.__updateOK()