From 19512339ac00bbf324de0fd268c5e0a1d0bb20cc Mon Sep 17 00:00:00 2001 From: DingZQ Date: Tue, 2 May 2023 22:21:02 +0800 Subject: [PATCH] Refine --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 7262ef0..f7c39d1 100644 --- a/main.py +++ b/main.py @@ -89,7 +89,9 @@ async def fastapi_export_inp(network: str) -> ChangeSet: cs = export_inp(network) op = cs.operations[0] op['vertex'] = str(get_all_vertices(network)) + print(op['vertex']) op['scada'] = str(get_all_scada_elements(network)) + print(op['scada']) return cs @app.post("/readinp/")