Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasAlaif committed Dec 22, 2024
1 parent 86a0bc0 commit f4c0cc0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion smt-log-parser/src/cmd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ pub fn run() -> Result<(), String> {
pretty_print,
} => dependencies::run(logfile, depth, pretty_print)?,
args::Commands::Stats { logfile, k } => stats::run(logfile, k)?,
args::Commands::Test { logfiles, timeout, memory } => test::run(logfiles, timeout, memory)?,
args::Commands::Test {
logfiles,
timeout,
memory,
} => test::run(logfiles, timeout, memory)?,
args::Commands::Reconstruct { logfile, clean } => reconstruct::run(logfile, clean)?,
}

Expand Down

0 comments on commit f4c0cc0

Please sign in to comment.