Skip to content

Commit 1f2cea1

Browse files
committed
Fix the pre-commit error
1 parent 53af123 commit 1f2cea1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

include/control_filters/exponential_filter.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ bool ExponentialFilter<T>::configure()
8787
this->param_prefix_);
8888
}
8989
catch (const std::exception & ex) {
90-
RCLCPP_ERROR((*logger_), "Exponential filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
90+
RCLCPP_ERROR((*logger_),
91+
"Exponential filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
9192
parameter_handler_.reset();
9293
return false;
9394
}

include/control_filters/low_pass_filter.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ bool LowPassFilter<T>::configure()
113113
this->param_prefix_);
114114
}
115115
catch (const std::exception & ex) {
116-
RCLCPP_ERROR((*logger_), "LowPass filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
116+
RCLCPP_ERROR((*logger_),
117+
"LowPass filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
117118
parameter_handler_.reset();
118119
return false;
119120
}

include/control_filters/rate_limiter.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ bool RateLimiter<T>::configure()
9090
this->param_prefix_);
9191
}
9292
catch (const std::exception & ex) {
93-
RCLCPP_ERROR((*logger_), "Rate Limiter filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
93+
RCLCPP_ERROR((*logger_),
94+
"Rate Limiter filter cannot be configured: %s (type : %s)", ex.what(), typeid(ex).name());
9495
parameter_handler_.reset();
9596
return false;
9697
}

0 commit comments

Comments
 (0)