Skip to content

Commit

Permalink
bug fix for extract_tbl helper function
Browse files Browse the repository at this point in the history
  • Loading branch information
RobLBaker committed Oct 2, 2024
1 parent 5453c3c commit 620478a
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 620478a

Please sign in to comment.