Skip to content

Commit

Permalink
Remove default_value for config_file
Browse files Browse the repository at this point in the history
Signed-off-by: Aarav Gupta <[email protected]>
  • Loading branch information
Amronos committed Sep 6, 2024
1 parent 08fca27 commit 9bcefd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ros_gz_sim/launch/ros_gz_sim.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def generate_launch_description():
world_sdf_string = LaunchConfiguration('world_sdf_string')

declare_config_file_cmd = DeclareLaunchArgument(
'config_file', default_value='', description='YAML config file'
'config_file', description='YAML config file'
)

declare_container_name_cmd = DeclareLaunchArgument(
Expand Down
2 changes: 1 addition & 1 deletion ros_gz_sim/launch/ros_gz_spawn_model.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def generate_launch_description():
yaw = LaunchConfiguration('Y', default='0.0')

declare_config_file_cmd = DeclareLaunchArgument(
'config_file', default_value='', description='YAML config file'
'config_file', description='YAML config file'
)

declare_container_name_cmd = DeclareLaunchArgument(
Expand Down

0 comments on commit 9bcefd2

Please sign in to comment.