8000 Fix async run · smartcoder00/arduinoWebSockets@2b0e8f6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2b0e8f6

Browse files
Tony763Links2004
authored andcommitted
Fix async run
1 parent dd8675c commit 2b0e8f6

File tree

1 file changed

+1
-1
lines changed
  • examples/esp8266/WebSocketClientOTA/python_ota_server

1 file changed

+1
-1
lines changed

examples/esp8266/WebSocketClientOTA/python_ota_server/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(self, name, message, websocket):
9090

9191
def run(self, ):
9292
try:
93-
asyncio.run(self.start_)
93+
asyncio.run(self.start_())
9494
except Exception as exception:
9595
Logger.exception(exception)
9696
finally:

0 commit comments

Comments
 (0)
0