src/eric7/MicroPython/Devices/DeviceBase.py

branch
eric7
changeset 9880
f425c58cf8e9
parent 9878
a82014a9e57b
child 9889
49728322ffb4
equal deleted inserted replaced
9879:925cf5d8d80f 9880:f425c58cf8e9
1457 1457
1458 def hasEthernet(self): 1458 def hasEthernet(self):
1459 """ 1459 """
1460 Public method to check the availability of Ethernet. 1460 Public method to check the availability of Ethernet.
1461 1461
1462 @return flag indicating the availability of Ethernet 1462 @return tuple containing a flag indicating the availability of Ethernet
1463 @rtype bool 1463 and the Ethernet type
1464 """ 1464 @rtype tuple of (bool, str)
1465 return False 1465 """
1466 return False, ""
1466 1467
1467 def addDeviceEthernetEntries(self, menu): 1468 def addDeviceEthernetEntries(self, menu):
1468 """ 1469 """
1469 Public method to add device specific entries to the given menu. 1470 Public method to add device specific entries to the given menu.
1470 1471

eric ide

mercurial