Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -320,7 +320,7 @@ async def handle_user_input(websocket,key, process, connected):
|
|
320 |
event = json.loads(message)
|
321 |
assert event["type"] == "cmd"
|
322 |
# command = event["command"]
|
323 |
-
|
324 |
try:
|
325 |
if event["command"]["type"]=="shell":
|
326 |
await asyncio.sleep(0.1)
|
@@ -646,7 +646,7 @@ async def exe(websocket,connected,key):
|
|
646 |
event = json.loads(message)
|
647 |
assert event["type"] == "cmd"
|
648 |
# command = event["command"]
|
649 |
-
|
650 |
|
651 |
try:
|
652 |
if event["command"]["type"]=="shell":
|
|
|
320 |
event = json.loads(message)
|
321 |
assert event["type"] == "cmd"
|
322 |
# command = event["command"]
|
323 |
+
print(f'Received user input: {event}')
|
324 |
try:
|
325 |
if event["command"]["type"]=="shell":
|
326 |
await asyncio.sleep(0.1)
|
|
|
646 |
event = json.loads(message)
|
647 |
assert event["type"] == "cmd"
|
648 |
# command = event["command"]
|
649 |
+
print(event)
|
650 |
|
651 |
try:
|
652 |
if event["command"]["type"]=="shell":
|