DaniilAlpha commited on
Commit
e357d06
·
1 Parent(s): e063347

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -0
main.py CHANGED
@@ -62,6 +62,7 @@ async def answer(ws: WebSocket):
62
  input = await ws.receive_text()
63
  output = answerer(input, 32)
64
  for el in output:
 
65
  await ws.send_text(el)
66
 
67
  await ws.close()
 
62
  input = await ws.receive_text()
63
  output = answerer(input, 32)
64
  for el in output:
65
+ print(f"sent: '{el}'")
66
  await ws.send_text(el)
67
 
68
  await ws.close()