ci: sync Bazel clippy lints and fix uncovered violations

This commit is contained in:
Michael Bolin
2026-03-31 15:14:19 -07:00
parent 9a8730f31e
commit a1f9eda176
22 changed files with 347 additions and 61 deletions

View File

@@ -309,7 +309,7 @@ where
D: Deserializer<'de>,
T: Deserialize<'de>,
{
Option::<Vec<T>>::deserialize(deserializer).map(|opt| opt.unwrap_or_default())
Option::<Vec<T>>::deserialize(deserializer).map(Option::unwrap_or_default)
}
#[derive(Clone, Debug, Deserialize)]