Skip to content

Commit

Permalink
Merge pull request nationalparkservice#58 from RobLBaker/master
Browse files Browse the repository at this point in the history
bug fix for extract_tbl helper function
  • Loading branch information
RobLBaker authored Oct 2, 2024
2 parents 5453c3c + 620478a commit fd25e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/load_data_packages.R
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ load_data_package <- function(reference_id,
#' z <- .extract_tbl(x)
#' }
extract_tbl <- function(x) {
if (is_tibble(x))
if (tibble::is_tibble(x))
return(list(x))
if (!is.list(x))
return(NULL)
Expand Down

0 comments on commit fd25e9d

Please sign in to comment.