File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ importFrom(stats,cor)
117
117
importFrom(stats,median)
118
118
importFrom(tibble,as_tibble)
119
119
importFrom(tibble,new_tibble)
120
+ importFrom(tibble,validate_tibble)
120
121
importFrom(tidyr,unnest)
121
122
importFrom(tidyselect,eval_select)
122
123
importFrom(tidyselect,starts_with)
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ grouped_epi_archive =
186
186
# ' object. See the documentation for the wrapper function [`epix_slide()`] for
187
187
# ' details.
188
188
# ' @importFrom data.table key address rbindlist setDF
189
- # ' @importFrom tibble as_tibble new_tibble
189
+ # ' @importFrom tibble as_tibble new_tibble validate_tibble
190
190
# ' @importFrom dplyr group_by groups
191
191
# ' @importFrom rlang !! !!! enquo quo_is_missing enquos is_quosure sym syms
192
192
# ' env missing_arg
@@ -294,7 +294,7 @@ grouped_epi_archive =
294
294
res [[new_col ]] <- list (comp_value )
295
295
296
296
# Convert the list to a tibble all at once for speed.
297
- return (new_tibble(res ))
297
+ return (validate_tibble( new_tibble(res ) ))
298
298
}
299
299
300
300
# If `f` is missing, interpret ... as an expression for tidy evaluation
You can’t perform that action at this time.
0 commit comments