chore: make Clippy happy

This commit is contained in:
Marc Plano-Lesay 2025-08-01 11:47:35 +10:00
parent 868ae1ffef
commit 14165f0137
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
3 changed files with 3 additions and 6 deletions

View file

@ -48,7 +48,7 @@ where
T: Display,
{
match o {
Some(s) => format!("{}", s),
Some(s) => format!("{s}"),
None => String::new(),
}
}