diff --git a/joy2twist/launch/gamepad_controller.launch.py b/joy2twist/launch/gamepad_controller.launch.py index 0f606a8..559fe13 100644 --- a/joy2twist/launch/gamepad_controller.launch.py +++ b/joy2twist/launch/gamepad_controller.launch.py @@ -27,7 +27,11 @@ def generate_launch_description(): joy2twist_launch = IncludeLaunchDescription( PythonLaunchDescriptionSource( - [PathJoinSubstitution([FindPackageShare("joy2twist"), "launch", "joy2twist.launch.py"])] + [ + PathJoinSubstitution( + [FindPackageShare("joy2twist"), "launch", "joy2twist.launch.py"] + ) + ] ), launch_arguments={ "joy2twist_params_file": LaunchConfiguration("joy2twist_params_file"), @@ -44,6 +48,11 @@ def generate_launch_description(): remappings=[("/diagnostics", "diagnostics")], ) - actions = [declare_namespace_arg, joy2twist_params_file_argument, joy2twist_launch, joy_linux_node] + actions = [ + declare_namespace_arg, + joy2twist_params_file_argument, + joy2twist_launch, + joy_linux_node, + ] return LaunchDescription(actions) diff --git a/joy2twist/launch/joy2twist.launch.py b/joy2twist/launch/joy2twist.launch.py index fea2f0b..c278988 100644 --- a/joy2twist/launch/joy2twist.launch.py +++ b/joy2twist/launch/joy2twist.launch.py @@ -30,7 +30,7 @@ def generate_launch_description(): parameters=[LaunchConfiguration("joy2twist_params_file")], # output={"stdout": "screen", "stderr": "screen"}, emulate_tty="true", - namespace=namespace + namespace=namespace, ) actions = [declare_namespace_arg, joy2twist_params_file_argument, joy2twist_node]