Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Dec 10, 2023
1 parent c4b176d commit 12e397e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/template/commands/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ pub fn handle(day: Option<Day>, recreate_all: bool) {
all_days().collect()
} else {
// when the `--all` flag is not set, filter out days that are fully benched.
all_days().filter(|day| !stored_timings.is_day_complete(&day)).collect()
all_days()
.filter(|day| !stored_timings.is_day_complete(day))
.collect()
}
});

Expand Down

0 comments on commit 12e397e

Please sign in to comment.