Skip to content

Commit

Permalink
chore(cargo/fmt)
Browse files Browse the repository at this point in the history
  • Loading branch information
binier committed Aug 28, 2023
1 parent 48ae606 commit c2192de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/v2/manual.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,9 @@ impl<'de> Deserialize<'de> for SgnStableV1 {
where
A: serde::de::SeqAccess<'de>,
{
let Some(elt) = seq.next_element()? else { return Err(serde::de::Error::custom("No tag")); };
let Some(elt) = seq.next_element()? else {
return Err(serde::de::Error::custom("No tag"));
};
Ok(elt)
}
}
Expand Down

0 comments on commit c2192de

Please sign in to comment.