Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 10, 2024
1 parent 2653051 commit c400ec5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tutorials/websocket_tutorial/websocketexample.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
)
)
Expand Down Expand Up @@ -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()),
)
)
Expand Down

0 comments on commit c400ec5

Please sign in to comment.