Remove launch_ros.get_default_launch_description

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
This commit is contained in:
Christophe Bedard 2020-03-18 10:33:22 -04:00
parent 15e09dfb53
commit 3079cfc568

View file

@ -21,7 +21,6 @@ from typing import Tuple
from launch import LaunchDescription
from launch import LaunchService
from launch_ros import get_default_launch_description
from launch_ros.actions import Node
from tracetools_launch.action import Trace
from tracetools_read import DictEvent
@ -72,7 +71,6 @@ def run_and_trace(
launch_actions.append(n)
ld = LaunchDescription(launch_actions)
ls = LaunchService()
ls.include_launch_description(get_default_launch_description())
ls.include_launch_description(ld)
exit_code = ls.run()