Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
levkk committed Oct 28, 2024
1 parent 711735d commit 98a0e44
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions rwf/src/view/template/language/expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ impl Expression {
Err(err) => return Err(err),
},

Expression::Binary {
left, op, right, ..
} => {
Expression::Binary { left, op, right } => {
let left = left.evaluate(context)?;
let right = right.evaluate(context)?;
op.evaluate_binary(&left, &right)
Expand Down

0 comments on commit 98a0e44

Please sign in to comment.