From c400ec588bcfbeca332f5d5e3beae50d57e57b33 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Tue, 10 Sep 2024 16:01:19 -0700 Subject: [PATCH] format Signed-off-by: Jess Frazelle --- tutorials/websocket_tutorial/websocketexample.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tutorials/websocket_tutorial/websocketexample.py b/tutorials/websocket_tutorial/websocketexample.py index 19ca8f9..2a6ecb8 100644 --- a/tutorials/websocket_tutorial/websocketexample.py +++ b/tutorials/websocket_tutorial/websocketexample.py @@ -42,7 +42,8 @@ def make_cube(): websocket.send( WebSocketRequest( modeling_cmd_req( - cmd=ModelingCmd(OptionStartPath()), cmd_id=ModelingCmdId(sketch_path_id) + cmd=ModelingCmd(OptionStartPath()), + cmd_id=ModelingCmdId(sketch_path_id), ), ) ) @@ -132,7 +133,9 @@ def make_cube(): websocket.send( WebSocketRequest( modeling_cmd_req( - cmd=ModelingCmd(OptionClosePath(path_id=ModelingCmdId(sketch_path_id))), + cmd=ModelingCmd( + OptionClosePath(path_id=ModelingCmdId(sketch_path_id)) + ), cmd_id=ModelingCmdId(uuid.uuid4()), ) )