From fa00a5ff81960102e4d1dc85dc9301e7d62920e2 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Wed, 1 Jan 2025 10:27:15 +0800 Subject: [PATCH] Refine --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 3f977d0..935f1b0 100644 --- a/main.py +++ b/main.py @@ -1409,6 +1409,7 @@ async def fastapi_get_network_coords(network: str) -> list[str] | None: @app.get("/getmajornodecoords/") async def fastapi_get_major_node_coords(network: str, diameter: int) -> list[str] | None: coords = get_major_node_coords(network, diameter) + print(coords) result = [] for node_id, coord in coords.items(): result.append(f"{node_id}:{coord['type']}:{coord['x']}:{coord['y']}")