Skip to content

Commit

Permalink
one line require
Browse files Browse the repository at this point in the history
  • Loading branch information
nbittich committed Sep 24, 2023
1 parent d4ec70a commit 4af338a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ fn start_app(
Ok(Primitive::Unit) => {}
Ok(calc) => println!("{calc}"),
Err(calc_err) => {
eprintln!("Error: {calc_err:?}");
match process_command(
db,
&mut script_context,
Expand All @@ -158,6 +157,7 @@ fn start_app(
) {
Ok(_) => (),
Err(err) => {
eprintln!("Error: {calc_err:?}");
eprintln!("Err: {err}");
}
}
Expand Down

0 comments on commit 4af338a

Please sign in to comment.