From 594a6b97f412173a56af15293fe2fa4d63148983 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Thu, 11 May 2023 22:16:51 +0800 Subject: [PATCH] Refine --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4687532..46b2491 100644 --- a/main.py +++ b/main.py @@ -54,7 +54,7 @@ async def fastapi_set_extension_data(network: str, req: Request) -> ChangeSet: props = await req.json() print(props) cs = set_extension_data(network, ChangeSet(props)) - print(cs) + print(cs.operations[0]) return cs ############################################################