Spaces:
Paused
Paused
Commit
·
dbbf754
1
Parent(s):
7cab91c
Update main.py
Browse files
main.py
CHANGED
@@ -85,7 +85,7 @@ async def answer(ws: WebSocket):
|
|
85 |
|
86 |
print("output created!")
|
87 |
|
88 |
-
for el in output:
|
89 |
print(f"sent: '{el}'")
|
90 |
await ws.send_text(el)
|
91 |
|
|
|
85 |
|
86 |
print("output created!")
|
87 |
|
88 |
+
async for el in output:
|
89 |
print(f"sent: '{el}'")
|
90 |
await ws.send_text(el)
|
91 |
|