From 67e655eb9086e599495570c8fc0cd7d82acd98ef Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 25 May 2025 22:06:16 -0400 Subject: [PATCH] Remove comment --- app/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client.py b/app/client.py index f76cc88..0f4bf5f 100644 --- a/app/client.py +++ b/app/client.py @@ -135,7 +135,7 @@ async def leave_server(guild_id): @command async def get_status(websocket, request_id): # Return the status object - response_payload = {"status": client_status} # It's good practice to wrap the actual data in a 'payload' key + response_payload = {"status": client_status} # Corrected line: Convert the dictionary to a JSON string before sending await websocket.send(json.dumps({"type":"response", "request_id": request_id, "payload": response_payload}))