Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jan 16, 2024
1 parent f7b8ca0 commit 70fa963
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,17 @@ def launch_setup(context, *args, **kwargs):
package="rclcpp_components",
executable=LaunchConfiguration("container_executable"),
composable_node_descriptions=[],
condition=UnlessCondition(LaunchConfiguration("include_concat_node_in_pointcloud_container")),
condition=UnlessCondition(
LaunchConfiguration("include_concat_node_in_pointcloud_container")
),
output="screen",
)

target_container = (
container
if UnlessCondition(LaunchConfiguration("include_concat_node_in_pointcloud_container")).evaluate(context)
if UnlessCondition(
LaunchConfiguration("include_concat_node_in_pointcloud_container")
).evaluate(context)
else LaunchConfiguration("pointcloud_container_name")
)

Expand Down

0 comments on commit 70fa963

Please sign in to comment.