Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Dec 20, 2024
1 parent 00bf681 commit 4eea735
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions common_sensor_launch/launch/nebula_node_container.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,30 +292,18 @@ def create_parameter_dict(*args):
parameters=[
{
"angle_range": [
float(
context.perform_substitution(
LaunchConfiguration("cloud_min_angle")
)
),
float(
context.perform_substitution(
LaunchConfiguration("cloud_max_angle")
)
),
float(context.perform_substitution(LaunchConfiguration("cloud_min_angle"))),
float(context.perform_substitution(LaunchConfiguration("cloud_max_angle"))),
],
"horizontal_ring_id": LaunchConfiguration("horizontal_ring_id"),
"vertical_bins": LaunchConfiguration("vertical_bins"),
"is_channel_order_top2down": LaunchConfiguration(
"is_channel_order_top2down"
),
"is_channel_order_top2down": LaunchConfiguration("is_channel_order_top2down"),
"max_distance_range": LaunchConfiguration("max_range"),
"horizontal_resolution": LaunchConfiguration("horizontal_resolution"),
}
]
+ [load_composable_node_param("blockage_diagnostics_param_file")],
extra_arguments=[
{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}
],
extra_arguments=[{"use_intra_process_comms": LaunchConfiguration("use_intra_process")}],
)

driver_component_loader = LoadComposableNodes(
Expand Down

0 comments on commit 4eea735

Please sign in to comment.