diff --git a/proxmox-schema/src/de/verify.rs b/proxmox-schema/src/de/verify.rs index 71e87b0e..0ed47138 100644 --- a/proxmox-schema/src/de/verify.rs +++ b/proxmox-schema/src/de/verify.rs @@ -292,6 +292,7 @@ impl<'de> de::Visitor<'de> for Visitor { _ => return Err(E::invalid_type(Unexpected::Str(value), &self)), }; + #[allow(clippy::let_unit_value)] let _: () = schema.check_constraints(value).map_err(E::custom)?; Ok(Verifier)