Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
avantgardnerio committed Nov 27, 2024
1 parent 9744903 commit eababa9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions object_store/src/client/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ impl From<Vec<MultipartInfo>> for CompleteMultipartUpload {
fn from(value: Vec<MultipartInfo>) -> Self {
let part = value
.into_iter()
.enumerate()
.map(|(_, part)| MultipartPart {
.map(|part| MultipartPart {
e_tag: part.e_tag,
part_number: part.part_number,
checksum_sha256: part.checksum_sha256,
Expand Down

0 comments on commit eababa9

Please sign in to comment.