--- a/src/eric7/MicroPython/Devices/DeviceBase.py Wed Feb 22 07:48:57 2023 +0100 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Wed Feb 22 08:20:34 2023 +0100 @@ -63,6 +63,7 @@ <ul> </ul> """ + # TODO: complete the list of supported commands def __init__(self, microPythonWidget, deviceType, parent=None): @@ -1175,7 +1176,6 @@ @return tuple containing a flag indicating the availability of WiFi and the WiFi type (picow or pimoroni) @rtype tuple of (bool, str) - @exception OSError raised to indicate an issue with the device """ return False, "" @@ -1190,7 +1190,7 @@ def getWifiData(self): """ - Public method to get data related to the current WiFi status + Public method to get data related to the current WiFi status. @return tuple of two dictionaries containing the WiFi status data for the WiFi client and access point @@ -1334,5 +1334,6 @@ """ return False + # # eflag: noqa = M613