Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun committed Jun 8, 2023
1 parent c112566 commit 2a40953
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions serde_derive/src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1767,13 +1767,9 @@ fn deserialize_externally_tagged_variant(
Style::Tuple => {
deserialize_tuple(Some(variant_ident), params, &variant.fields, cattrs, None)
}
Style::Struct => deserialize_struct(
Some(variant_ident),
params,
&variant.fields,
cattrs,
None,
),
Style::Struct => {
deserialize_struct(Some(variant_ident), params, &variant.fields, cattrs, None)
}
}
}

Expand Down

0 comments on commit 2a40953

Please sign in to comment.