cargo fmt

Signed-off-by: Jia Chao <jiachao2130@126.com>
This commit is contained in:
Jia Chao 2024-08-06 11:33:08 +08:00
parent f82ff6ac72
commit 853be957ee

View File

@ -76,13 +76,16 @@ fn summary(cli: &Cli) -> crate::Result<()> {
let pos: usize = cusa.severity().into();
res[pos] += 1;
}
let msg = format!("
let msg = format!(
"
{:3}
{:3}
{:3}
{:3}
", res[4], res[3], res[2], res[1]);
",
res[4], res[3], res[2], res[1]
);
println!("{}", msg);
Ok(())