Skip to content

Commit

Permalink
chore: clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Dec 2, 2024
1 parent 605f629 commit 9b2c005
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sia/src/types/currency.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl<'de> Deserialize<'de> for Currency {
fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
struct CurrencyVisitor;

impl<'de> serde::de::Visitor<'de> for CurrencyVisitor {
impl serde::de::Visitor<'_> for CurrencyVisitor {
type Value = Currency;

fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result {
Expand Down

0 comments on commit 9b2c005

Please sign in to comment.