src/eric7/MicroPython/MicroPythonWebreplDeviceInterface.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/MicroPython/MicroPythonWebreplDeviceInterface.py	Tue Apr 16 15:47:11 2024 +0200
+++ b/src/eric7/MicroPython/MicroPythonWebreplDeviceInterface.py	Sat Apr 20 18:01:36 2024 +0200
@@ -176,7 +176,7 @@
         @param commands list of commands to be executed
         @type str or list of str
         @keyparam mode submit mode to be used (one of 'raw' or 'paste') (defaults to
-            'raw'). This is ignored because webrepl always uses 'paste' mode.
+            'raw'). This is ignored because webrepl always uses 'paste' mode. (unused)
         @type str
         @keyparam timeout per command timeout in milliseconds (0 for configured default)
             (defaults to 0)
@@ -239,14 +239,14 @@
         self.__blockReadyRead = False
         return out, err
 
-    def executeAsync(self, commandsList, submitMode):  # noqa: U100
+    def executeAsync(self, commandsList, _submitMode):
         """
         Public method to execute a series of commands over a period of time
         without returning any result (asynchronous execution).
 
         @param commandsList list of commands to be execute on the device
         @type list of str
-        @param submitMode mode to be used to submit the commands
+        @param _submitMode mode to be used to submit the commands (unused)
         @type str (one of 'raw' or 'paste')
         """
         self.__blockReadyRead = True

eric ide

mercurial