Skip to content

Commit 7edd275

Browse files
authored
address across deprecation warning (#466)
the `...` argument of `across()` is deprecated as of dplyr 1.1.0, though we didn't make use of it here—just (likely unintentionally) left a trailing comma
1 parent f02acae commit 7edd275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ standardize_variable_types <- function(x) {
8383
dplyr::mutate(
8484
dplyr::across(
8585
where(~ is.logical(.x)),
86-
~ factor(.x, levels = c("TRUE", "FALSE")),
86+
~ factor(.x, levels = c("TRUE", "FALSE"))
8787
)
8888
) %>%
8989
# integer to numeric

0 commit comments

Comments
 (0)