Skip to content

Commit

Permalink
remove one unnecessary annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Feb 17, 2024
1 parent 9056850 commit 465b2a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ fn coerce_json_relation_to_pv(value: serde_json::Value, rs: &RelationSelection)
.into_object()
.expect("Expected coerced_json_relation_to_pv to return list of objects");

let (field_names, values): (Vec<_>, Vec<_>) = object.into_iter().unzip();
let (field_names, values): (Vec<_>, _) = object.into_iter().unzip();

Record::new(values)
.extract_selection_result_from_prisma_name(&field_names, distinct)
Expand Down

0 comments on commit 465b2a2

Please sign in to comment.