diff -r 925cf5d8d80f -r f425c58cf8e9 src/eric7/MicroPython/Devices/DeviceBase.py --- a/src/eric7/MicroPython/Devices/DeviceBase.py Sun Mar 12 14:57:37 2023 +0100 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Sun Mar 12 16:10:56 2023 +0100 @@ -1459,10 +1459,11 @@ """ Public method to check the availability of Ethernet. - @return flag indicating the availability of Ethernet - @rtype bool + @return tuple containing a flag indicating the availability of Ethernet + and the Ethernet type + @rtype tuple of (bool, str) """ - return False + return False, "" def addDeviceEthernetEntries(self, menu): """