src/eric7/MicroPython/Devices/DeviceBase.py

branch
mpy_network
changeset 9789
d8e0ab86ddca
parent 9787
163511257f24
child 9792
c5c55266b006
diff -r 12294115900a -r d8e0ab86ddca src/eric7/MicroPython/Devices/DeviceBase.py
--- 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

eric ide

mercurial