chore: fix formatting

This commit is contained in:
daimond113 2025-02-15 00:08:47 +01:00
parent 509838bb08
commit ff6449a340
No known key found for this signature in database
GPG key ID: 640DC95EC1190354

View file

@ -171,9 +171,7 @@ where
while let Some((key, value)) = access.next_entry()? {
if map.contains_key(&key) {
return Err(serde::de::Error::custom(format!(
"duplicate key `{key}`"
)));
return Err(serde::de::Error::custom(format!("duplicate key `{key}`")));
}
map.insert(key, value);