Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <[email protected]>
  • Loading branch information
pre-commit-ci[bot] authored and esteve committed May 28, 2024
1 parent 7f72e9f commit 818b9f4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion planning/autoware_behavior_velocity_planner/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

<test_depend>ament_cmake_ros</test_depend>
<test_depend>ament_lint_auto</test_depend>
<test_depend>autoware_behavior_velocity_walkway_module</test_depend>
<test_depend>autoware_lint_common</test_depend>
<test_depend>behavior_velocity_blind_spot_module</test_depend>
<test_depend>behavior_velocity_crosswalk_module</test_depend>
Expand All @@ -79,7 +80,6 @@
<test_depend>behavior_velocity_stop_line_module</test_depend>
<test_depend>behavior_velocity_traffic_light_module</test_depend>
<test_depend>behavior_velocity_virtual_traffic_light_module</test_depend>
<test_depend>autoware_behavior_velocity_walkway_module</test_depend>
<!--<test_depend>behavior_velocity_template_module</test_depend>-->

<member_of_group>rosidl_interface_packages</member_of_group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
namespace autoware::behavior_velocity_planner
{

using ::behavior_velocity_planner::SceneModuleManagerInterface;
using lanelet::autoware::Crosswalk;
using tier4_autoware_utils::getOrDeclareParameter;
using ::behavior_velocity_planner::SceneModuleManagerInterface;
namespace planning_utils = ::behavior_velocity_planner::planning_utils;
using ::behavior_velocity_planner::getCrosswalksOnPath;
using ::behavior_velocity_planner::getCrosswalkIdSetOnPath;
using ::behavior_velocity_planner::getCrosswalksOnPath;

WalkwayModuleManager::WalkwayModuleManager(rclcpp::Node & node)
: SceneModuleManagerInterface(node, getModuleName())
Expand Down Expand Up @@ -108,4 +108,5 @@ WalkwayModuleManager::getModuleExpiredFunction(const PathWithLaneId & path)

#include <pluginlib/class_list_macros.hpp>
PLUGINLIB_EXPORT_CLASS(
autoware::behavior_velocity_planner::WalkwayModulePlugin, ::behavior_velocity_planner::PluginInterface)
autoware::behavior_velocity_planner::WalkwayModulePlugin,
::behavior_velocity_planner::PluginInterface)
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@

namespace autoware::behavior_velocity_planner
{
using autoware_auto_planning_msgs::msg::PathWithLaneId;
using ::behavior_velocity_planner::PluginWrapper;
using ::behavior_velocity_planner::SceneModuleInterface;
using ::behavior_velocity_planner::SceneModuleManagerInterface;
using autoware_auto_planning_msgs::msg::PathWithLaneId;

class WalkwayModuleManager : public SceneModuleManagerInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@
namespace autoware::behavior_velocity_planner
{
namespace bg = boost::geometry;
using ::behavior_velocity_planner::getLinestringIntersects;
using ::behavior_velocity_planner::getPolygonIntersects;
using ::behavior_velocity_planner::getStopLineFromMap;
using ::behavior_velocity_planner::PlanningBehavior;
using ::behavior_velocity_planner::SceneModuleInterface;
using ::behavior_velocity_planner::StopFactor;
using ::behavior_velocity_planner::VelocityFactor;
using motion_utils::calcLongitudinalOffsetPose;
using motion_utils::calcSignedArcLength;
using motion_utils::findNearestSegmentIndex;
using tier4_autoware_utils::createPoint;
using tier4_autoware_utils::getPose;
using ::behavior_velocity_planner::PlanningBehavior;
using ::behavior_velocity_planner::SceneModuleInterface;
using ::behavior_velocity_planner::StopFactor;
using ::behavior_velocity_planner::VelocityFactor;
using ::behavior_velocity_planner::getStopLineFromMap;
using ::behavior_velocity_planner::getLinestringIntersects;
using ::behavior_velocity_planner::getPolygonIntersects;
namespace planning_utils = ::behavior_velocity_planner::planning_utils;

WalkwayModule::WalkwayModule(
Expand Down

0 comments on commit 818b9f4

Please sign in to comment.