Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Dec 8, 2021
1 parent bf6b9dc commit 8bba278
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common/autoware_global_parameter_loader/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add the following lines to the launch file of the node in which you want to get
</include>
```

The vehicle model parameter is read from `config/vehicle_info.param.yaml` in `vehicle_model`_description package.
The vehicle model parameter is read from `config/vehicle_info.param.yaml` in `vehicle_model`\_description package.

## Assumptions / Known limits

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ def add_launch_arg(name: str, default_value=None):
return DeclareLaunchArgument(name, default_value=default_value)

default_vehicle_info_param = os.path.join(
get_package_share_directory('vehicle_info_util'),
'config/vehicle_info.param.yaml')
get_package_share_directory("vehicle_info_util"), "config/vehicle_info.param.yaml"
)

vehicle_info_param = DeclareLaunchArgument(
'vehicle_info_param_file',
"vehicle_info_param_file",
default_value=default_vehicle_info_param,
description='Path to config file for vehicle information'
description="Path to config file for vehicle information",
)

nodes = [
Expand All @@ -52,7 +52,7 @@ def add_launch_arg(name: str, default_value=None):
"split_points_distance_tolerance": 0.2,
"split_height_distance": 0.2,
},
LaunchConfiguration('vehicle_info_param_file'),
LaunchConfiguration("vehicle_info_param_file"),
],
),
]
Expand Down

0 comments on commit 8bba278

Please sign in to comment.