From d166dcff0a7b674115ef6cecdbdc497402dca07f Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 28 Aug 2024 14:32:21 +0200 Subject: [PATCH] schema: rustfmt Signed-off-by: Wolfgang Bumiller --- proxmox-schema/src/schema.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/proxmox-schema/src/schema.rs b/proxmox-schema/src/schema.rs index 5054422d..5cecdd0a 100644 --- a/proxmox-schema/src/schema.rs +++ b/proxmox-schema/src/schema.rs @@ -1649,9 +1649,7 @@ fn do_parse_parameter_strings( Err(err) => errors.push(key.into(), err), } } - _ => { - errors.push(key.into(), format_err!("expected array - type mismatch")) - } + _ => errors.push(key.into(), format_err!("expected array - type mismatch")), } } _ => match prop_schema.parse_simple_value(value) {