removed early return

This commit is contained in:
sreedev
2023-11-14 18:37:48 -05:00
parent b16236763c
commit 080cd791dc

View File

@@ -124,7 +124,6 @@ impl Formatter {
if app_args.json {
let output_json = serde_json::to_string_pretty(&raw)?;
println!("{}", output_json);
return Ok(());
} else {
let output_table = Self::generate_table(raw, app_args)?;
output_table.printstd();