Skip to content

Commit 16f5650

Browse files
committed
specify import packages
1 parent 5a06e0d commit 16f5650

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,5 @@ importFrom(tidyr,unnest)
188188
importFrom(tidyselect,eval_select)
189189
importFrom(tidyselect,starts_with)
190190
importFrom(tsibble,as_tsibble)
191+
importFrom(utils,capture.output)
191192
importFrom(utils,tail)

R/archive.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ NULL
251251
#'
252252
#' @importFrom data.table as.data.table key setkeyv
253253
#' @importFrom dplyr if_any if_all everything
254+
#' @importFrom utils capture.output
254255
#'
255256
#' @name epi_archive
256257
#' @export

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ deprecated_quo_is_present <- function(quo) {
536536
FALSE
537537
} else {
538538
quo_expr <- rlang::get_expr(quo)
539-
if (identical(quo_expr, rlang::expr(deprecated())) || identical(quo_expr, rlang::expr(lifecycle::deprecated()))) { # nolint: object_usage_linter
539+
if (identical(quo_expr, rlang::expr(lifecycle::deprecated())) || identical(quo_expr, rlang::expr(lifecycle::deprecated()))) { # nolint: object_usage_linter
540540
FALSE
541541
} else {
542542
TRUE

0 commit comments

Comments
 (0)