DaniilAlpha commited on
Commit
dbbf754
·
1 Parent(s): 7cab91c

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
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