Skip to content

Commit 0fc3984

Browse files
committed
Fix pre-commit
1 parent 5f42f60 commit 0fc3984

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mecanum_drive_controller/src/odometry.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ bool Odometry::updateFromVelocity(
9696
const rclcpp::Time & time)
9797
{
9898
const double dt = time.seconds() - timestamp_.seconds();
99-
if (dt < 0.0001)
100-
{
99+
if (dt < 0.0001) {
101100
return false; // Interval too small to integrate with
102101
}
103102
// Compute linear and angular diff:

0 commit comments

Comments
 (0)