diff --git a/main.py b/main.py index 414257f..acf2c59 100644 --- a/main.py +++ b/main.py @@ -101,8 +101,12 @@ async def fastapi_execute_batch_commands(network: str, req: Request)-> ChangeSet jo_root = await req.json() print(jo_root) jo_operations = jo_root['operations'] + print(jo_operations) + print(type(jo_operations)) cs: ChangeSet = ChangeSet({}) for jo in jo_operations: + print(jo) + print(type(jo)) cs.add(jo) return execute_batch_commands(network, cs)