fix: cargo fmt

This commit is contained in:
Drake 2022-05-14 15:46:57 -06:00
parent 43674efb32
commit c4ab5a02eb
No known key found for this signature in database
GPG key ID: C905B72008514EBC
3 changed files with 6 additions and 8 deletions

View file

@ -422,12 +422,7 @@ pub fn canonicalize_expr<'a>(
let (expr, output) = match expr {
&ast::Expr::Num(str) => {
let answer = num_expr_from_result(
var_store,
finish_parsing_num(str),
region,
env,
);
let answer = num_expr_from_result(var_store, finish_parsing_num(str), region, env);
(answer, Output::default())
}