src/eric7/MicroPython/Devices/DeviceBase.py

branch
eric7
changeset 9880
f425c58cf8e9
parent 9878
a82014a9e57b
child 9889
49728322ffb4
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):
         """

eric ide

mercurial