style: fix cargo fmt formatting in config schema handler

This commit is contained in:
s04 2026-02-18 21:09:23 +01:00 committed by Chummy
parent 996f66b6a7
commit 282fbe0e95

View file

@ -784,8 +784,7 @@ async fn main() -> Result<()> {
let schema = schemars::schema_for!(config::Config); let schema = schemars::schema_for!(config::Config);
println!( println!(
"{}", "{}",
serde_json::to_string_pretty(&schema) serde_json::to_string_pretty(&schema).expect("failed to serialize JSON Schema")
.expect("failed to serialize JSON Schema")
); );
Ok(()) Ok(())
} }