formatting fixup

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2020-01-30 12:37:26 +01:00
parent db741bfb81
commit 39566afb15

View File

@ -72,7 +72,10 @@ pub fn handle_method(mut attribs: JSONObject, mut func: syn::ItemFn) -> Result<T
func.sig.ident.span(),
);
let input_schema_name = Ident::new(
&format!("API_PARAMETER_SCHEMA_{}", func_name.to_string().to_uppercase()),
&format!(
"API_PARAMETER_SCHEMA_{}",
func_name.to_string().to_uppercase()
),
func.sig.ident.span(),
);