Skip to content

Commit 332362b

Browse files
committed
Address tidyselect warnings on .data$
1 parent e417756 commit 332362b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/methods-epi_df.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ sum_groups_epi_df <- function(.x, sum_cols, group_cols = "time_value") {
532532
if (!"geo_value" %in% group_cols) {
533533
out <- out %>%
534534
mutate(geo_value = "total") %>%
535-
relocate(.data$geo_value, .before = 1)
535+
relocate("geo_value", .before = 1)
536536
}
537537

538538
# The `geo_type` will be correctly inherited here by the following logic:

0 commit comments

Comments
 (0)