Skip to content

Commit

Permalink
Fix parse
Browse files Browse the repository at this point in the history
  • Loading branch information
richfitz committed Oct 10, 2024
1 parent 78eaa6a commit 37be493
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/dsl.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ monty_dsl_parse <- function(x, type = NULL, gradient = NULL, fixed = NULL) {
} else {
x <- rlang::quo_get_expr(quo)
}
fixed <- check_dsl_fixed(data, call)
fixed <- check_dsl_fixed(fixed, call)
exprs <- dsl_preprocess(x, type, call)
dsl_parse(exprs, gradient, call)
dsl_parse(exprs, gradient, fixed, call)
}


Expand Down

0 comments on commit 37be493

Please sign in to comment.