Skip to content

Commit

Permalink
Specify before_arg and after_arg
Browse files Browse the repository at this point in the history
  • Loading branch information
markfairbanks committed Oct 13, 2022
1 parent 7756b4f commit f9439f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/step-colorder-relocate.R
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ relocate.dtplyr_step <- function(.data, ..., .before = NULL, .after = NULL) {
expr(c(...)),
.data,
before = enquo(.before),
after = enquo(.after)
after = enquo(.after),
before_arg = ".before",
after_arg = ".after"
))
out <- step_colorder(.data, new_vars)
step_group(out, .data$groups)
Expand Down

0 comments on commit f9439f3

Please sign in to comment.