Skip to content

Commit

Permalink
Satisfy formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
jfecher committed May 22, 2024
1 parent 7be1561 commit 67f3c65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tooling/nargo_cli/src/cli/info_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ pub(crate) fn run(args: InfoCommand, config: NargoConfig) -> Result<(), CliError
} else {
// Otherwise print human-readable table.
if !info_report.programs.is_empty() {
let mut program_table = table!([Fm->"Package", Fm->"Function", Fm->"Expression Width", Fm->"ACIR Opcodes", Fm->"Backend Circuit Size"]);
let mut program_table =
table!([Fm->"Package", Fm->"Function", Fm->"Expression Width", Fm->"ACIR Opcodes", Fm->"Backend Circuit Size"]);

for program_info in info_report.programs {
let program_rows: Vec<Row> = program_info.into();
Expand Down

0 comments on commit 67f3c65

Please sign in to comment.