--- a/src/eric7/MicroPython/Devices/DeviceBase.py Mon May 05 10:17:49 2025 +0200 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Mon May 05 17:40:08 2025 +0200 @@ -2018,10 +2018,11 @@ Public method to get Ethernet status data of the connected board. @return list of tuples containing the translated status data label and - the associated value - @rtype list of tuples of (str, str) + the associated value and a dictionary with keys 'ipv4' and 'ipv6' + containing the respective address information + @rtype tuple of list of tuples of (str, str) and dict """ - return [] + return [], {"ipv4": [], "ipv6": []} def connectToLan(self, config, hostname): # noqa: U-100 """