Skip to content

Commit

Permalink
specify import packages
Browse files Browse the repository at this point in the history
  • Loading branch information
nmdefries committed Jun 20, 2024
1 parent 99df53a commit ba37298
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,5 @@ importFrom(tidyr,unnest)
importFrom(tidyselect,eval_select)
importFrom(tidyselect,starts_with)
importFrom(tsibble,as_tsibble)
importFrom(utils,capture.output)
importFrom(utils,tail)
1 change: 1 addition & 0 deletions R/archive.R
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ NULL
#'
#' @importFrom data.table as.data.table key setkeyv
#' @importFrom dplyr if_any if_all everything
#' @importFrom utils capture.output
#'
#' @name epi_archive
#' @export
Expand Down
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ deprecated_quo_is_present <- function(quo) {
FALSE
} else {
quo_expr <- rlang::get_expr(quo)
if (identical(quo_expr, rlang::expr(deprecated())) || identical(quo_expr, rlang::expr(lifecycle::deprecated()))) { # nolint: object_usage_linter
if (identical(quo_expr, rlang::expr(lifecycle::deprecated())) || identical(quo_expr, rlang::expr(lifecycle::deprecated()))) { # nolint: object_usage_linter
FALSE
} else {
TRUE
Expand Down

0 comments on commit ba37298

Please sign in to comment.