fix: clippy
This commit is contained in:
parent
c4b176de50
commit
12e397ee0a
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ pub fn handle(day: Option<Day>, recreate_all: bool) {
|
||||||
all_days().collect()
|
all_days().collect()
|
||||||
} else {
|
} else {
|
||||||
// when the `--all` flag is not set, filter out days that are fully benched.
|
// 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()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue