From 6b92952d96a09530597744a2babf97b3e8bb20b2 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sat, 15 Oct 2022 18:00:15 +0800 Subject: [PATCH] Print operations --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 795ceb3..d4140f9 100644 --- a/main.py +++ b/main.py @@ -111,6 +111,9 @@ async def fastapi_execute_batch_commands(network: str, req: Request)-> ChangeSet print(cs) print(type(cs)) + ops = cs.operations + print(ops) + print(type(ops)) return execute_batch_commands(network, cs)