From 48e149b7b495b16c525dfa73ce86cebf866e4e53 Mon Sep 17 00:00:00 2001 From: DingZQ Date: Sun, 2 Oct 2022 23:00:54 +0800 Subject: [PATCH] Change operationId to operationid --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index a0915b2..5c66318 100644 --- a/main.py +++ b/main.py @@ -95,8 +95,8 @@ async def fastapi_get_current_operaiton_id(network: str) -> int: return get_current_operation(network) @app.get("/syncwithserver/") -def fastapi_sync_with_server(network: str, operationId: int) -> ChangeSet: - return sync_with_server(network, operationId) +def fastapi_sync_with_server(network: str, operationid: int) -> ChangeSet: + return sync_with_server(network, operationid) # node @app.get("/getnodes/")