-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationformatterRelated to the formatterRelated to the formatter
Milestone
Description
Black formatting
def from_user_altitude_range_to_px4_altitude_range(
altitude_range: Tuple[float, float],
) -> Tuple[int, int]:
user_minimal_coordinate, user_maximal_coordinate = (0.0, 0.0, altitude_range[0]), (
0.0,
0.0,
altitude_range[1],
)Ruff formatting
def from_user_altitude_range_to_px4_altitude_range(
altitude_range: Tuple[float, float],
) -> Tuple[int, int]:
user_minimal_coordinate, user_maximal_coordinate = (
(0.0, 0.0, altitude_range[0]),
(
0.0,
0.0,
altitude_range[1],
),
)Use Ruff 0.0.289 with line length 100.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationformatterRelated to the formatterRelated to the formatter