Skip to content

Commit

Permalink
Remove empty launch args default_value (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeGdM authored and berndgassmann committed Jul 27, 2022
1 parent 03474bc commit 12ef954
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def generate_launch_description():
),
launch.actions.DeclareLaunchArgument(
name='spawn_point',
default_value=''
default_value='None'
),
launch.actions.DeclareLaunchArgument(
name='town',
Expand Down
2 changes: 1 addition & 1 deletion carla_ros_bridge/test/ros_bridge_client_ros2_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def generate_test_description():
),
launch.actions.DeclareLaunchArgument(
name='spawn_point',
default_value=''
default_value='None'
),
launch.actions.DeclareLaunchArgument(
name='objects_definition_file',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def generate_launch_description():
),
launch.actions.DeclareLaunchArgument(
name='spawn_point_ego_vehicle',
default_value=''
default_value='None'
),
launch.actions.DeclareLaunchArgument(
name='spawn_sensors_only',
Expand Down
2 changes: 1 addition & 1 deletion carla_spawn_objects/launch/carla_spawn_objects.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def generate_launch_description():
),
launch.actions.DeclareLaunchArgument(
name='spawn_point_ego_vehicle',
default_value=''
default_value='None'
),
launch.actions.DeclareLaunchArgument(
name='spawn_sensors_only',
Expand Down

0 comments on commit 12ef954

Please sign in to comment.