Skip to content

Commit

Permalink
chore: Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hko-s committed Jan 22, 2024
1 parent 8014e49 commit 8c4c27f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/key_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ impl fmt::UpperHex for KeyId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut encoded = hex::encode(self.as_ref());
encoded.make_ascii_uppercase();
write!(f, "{}", encoded)
write!(f, "{encoded}")
}
}

0 comments on commit 8c4c27f

Please sign in to comment.