Skip to content

Commit 2654687

Browse files
committed
formatting
1 parent a92f076 commit 2654687

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/utils-latency.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,8 @@ get_latency_table <- function(training, columns, forecast_date, latency,
358358
drop_ignored_keys <- function(training, keys_to_ignore) {
359359
# note that the extra parenthesis black magic is described here: https://github.com/tidyverse/dplyr/issues/6194
360360
# and is needed to bypass an incomplete port of `across` functions to `if_any`
361-
training %>% ungroup %>%
361+
training %>%
362+
ungroup() %>%
362363
filter((dplyr::if_all(
363364
names(keys_to_ignore),
364365
~ . %nin% keys_to_ignore[[cur_column()]]

0 commit comments

Comments
 (0)