From 49393127569c6d40a725da9c399761aca3c235f3 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Fri, 5 May 2023 20:55:51 +0800 Subject: [PATCH] Refine --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index a9ac083..340e92f 100644 --- a/main.py +++ b/main.py @@ -89,8 +89,8 @@ async def fastapi_export_inp(network: str) -> ChangeSet: cs = export_inp(network) op = cs.operations[0] open_project(network) - op['vertex'] = json.dumps(get_all_vertices(network)) - print(op['vertex']) + # op['vertex'] = json.dumps(get_all_vertices(network)) + # print(op['vertex']) op['scada'] = json.dumps(get_all_scada_elements(network)) close_project(network)