From e4853906b377ee4a7f0c40975715beaf2a7df376 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 15 Oct 2022 17:46:34 +0800 Subject: [PATCH] Print jsTxt type --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index f04d0a7..c978005 100644 --- a/main.py +++ b/main.py @@ -100,6 +100,7 @@ async def fastapi_sync_with_server(network: str, operationid: int) -> ChangeSet: async def fastapi_execute_batch_commands(network: str, req: Request)-> ChangeSet: jsTxt = await req.json() print(jsTxt) + print(type(jsTxt)) jo = json.loads(jsTxt) print(jo) print(type(jo))