Skip to content

Commit

Permalink
fix pre commit
Browse files Browse the repository at this point in the history
  • Loading branch information
yabuta committed May 9, 2024
1 parent c44cdf5 commit a9c2e4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vehicle/pitch_checker/src/pitch_checker_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ PitchChecker::PitchChecker(const rclcpp::NodeOptions & node_options)
: Node("pitch_checker", node_options)
{
transform_listener_ = std::make_shared<tier4_autoware_utils::TransformListener>(this);
using namespace std::placeholders;
using std::placeholders::_1;
using std::placeholders::_2;
using std::placeholders::_3;

update_hz_ = this->declare_parameter<double>("update_hz", 10.0);
output_file_ = this->declare_parameter<std::string>("output_file", "pitch.csv");
save_flag_server_ = this->create_service<std_srvs::srv::Trigger>(
Expand Down

0 comments on commit a9c2e4a

Please sign in to comment.