Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suaviloquence committed Jun 21, 2024
1 parent e050f50 commit 8216d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ pub(super) fn run_check_release(

let (queries_to_run, queries_to_skip): (Vec<_>, _) =
SemverQuery::all_queries().into_values().partition(|query| {
!version_change.supports_requirement(overrides.effective_required_update(&query))
!version_change.supports_requirement(overrides.effective_required_update(query))
});
let skipped_queries = queries_to_skip.len();

Expand Down

0 comments on commit 8216d8d

Please # to comment.