Skip to content

Commit

Permalink
Fix deprecated itertools::Itertools::group_by deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mlcui-corp authored and gulbanana committed Aug 28, 2024
1 parent 8a4f46b commit 273384b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/worker/mutations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ impl Mutation for GitPush {
None
}
})
.group_by(|(remote_name, _)| *remote_name)
.chunk_by(|(remote_name, _)| *remote_name)
.into_iter()
{
let mut branch_updates = Vec::new();
Expand Down

0 comments on commit 273384b

Please sign in to comment.