Enable and fix warnings from clippy::uninlined_format_args (#3063)

This commit is contained in:
Jonas Platte
2024-12-03 22:27:14 +01:00
committed by GitHub
parent b5a0109221
commit 99c07e4d86
8 changed files with 17 additions and 17 deletions
+1 -2
View File
@@ -299,9 +299,8 @@ where
.serialize(serde_html_form::ser::Serializer::new(&mut urlencoder))
.unwrap_or_else(|err| {
panic!(
"failed to URL encode value of type `{}`: {}",
"failed to URL encode value of type `{}`: {err}",
type_name::<T>(),
err
)
});
f.write_str(&out)?;