Skip to content

Commit 6a0caa3

Browse files
committed
Refactor _build_track_from_state function signature
Reformatted the _build_track_from_state function definition to span multiple lines for improved readability.
1 parent fe45c00 commit 6a0caa3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/track_linearization/track_builders.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,9 @@ def print_instructions() -> None:
10291029
return _build_track_from_state(state, scale)
10301030

10311031

1032-
def _build_track_from_state(state: TrackBuilderState | dict[str, Any], scale: float = 1.0) -> dict[str, Any]:
1032+
def _build_track_from_state(
1033+
state: TrackBuilderState | dict[str, Any], scale: float = 1.0
1034+
) -> dict[str, Any]:
10331035
"""
10341036
Helper function to build track graph from interactive builder state.
10351037

0 commit comments

Comments
 (0)