From 3114a0a92e2c74863b6f64c7d078d5ac3b7eb571 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 13 May 2023 09:45:35 +0800 Subject: [PATCH] Refine --- main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.py b/main.py index 716fafe..2dda06b 100644 --- a/main.py +++ b/main.py @@ -244,10 +244,8 @@ async def fastapi_sync_with_server(network: str, operation: int) -> ChangeSet: @app.post("/batch/") async def fastapi_execute_batch_commands(network: str, req: Request)-> ChangeSet: jo_root = await req.json() - print(jo_root) cs: ChangeSet = ChangeSet() cs.operations = jo_root['operations'] - print(cs) rcs = execute_batch_commands(network, cs) print(rcs) return rcs