diff --git a/aip_x1_launch/launch/pointcloud_preprocessor.launch.py b/aip_x1_launch/launch/pointcloud_preprocessor.launch.py index b123f775..2cb69ae7 100644 --- a/aip_x1_launch/launch/pointcloud_preprocessor.launch.py +++ b/aip_x1_launch/launch/pointcloud_preprocessor.launch.py @@ -57,13 +57,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") ) diff --git a/aip_x2_launch/launch/pointcloud_preprocessor.launch.py b/aip_x2_launch/launch/pointcloud_preprocessor.launch.py index 85fcfb19..46045756 100644 --- a/aip_x2_launch/launch/pointcloud_preprocessor.launch.py +++ b/aip_x2_launch/launch/pointcloud_preprocessor.launch.py @@ -63,13 +63,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") )