Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ewfuentes committed Nov 21, 2024
1 parent 1b704ef commit 23f4bdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions experimental/overhead_matching/spectacular_log.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
#include <chrono>
#include <filesystem>
#include <fstream>
#include <iostream>
#include <memory>
#include <string>
#include <iostream>

#include "Eigen/Core"
#include "common/check.hh"
#include "common/argument_wrapper.hh"
#include "common/check.hh"
#include "common/math/cubic_hermite_spline.hh"
#include "common/time/robot_time.hh"
#include "fmt/format.h"
Expand Down Expand Up @@ -125,7 +125,7 @@ void seek_to_frame(const int frame_id, InOut<cv::VideoCapture> video) {
video->set(cv::CAP_PROP_POS_FRAMES, 0);
}

while(video->get(cv::CAP_PROP_POS_FRAMES) != frame_id) {
while (video->get(cv::CAP_PROP_POS_FRAMES) != frame_id) {
video->grab();
}
}
Expand Down
3 changes: 2 additions & 1 deletion experimental/overhead_matching/spectacular_log_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ std::ostream &operator<<(std::ostream &out, const time::RobotTimestamp &t) {

TEST(SpectacularLogTest, happy_case) {
// Setup
const std::filesystem::path log_path("external/spectacular_log_snippet/recording_2024-11-21_13-36-30");
const std::filesystem::path log_path(
"external/spectacular_log_snippet/recording_2024-11-21_13-36-30");
SpectacularLog log(log_path);
// Action

Expand Down

0 comments on commit 23f4bdb

Please sign in to comment.