Skip to content

Commit 620478a

Browse files
committed
bug fix for extract_tbl helper function
1 parent 5453c3c commit 620478a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/load_data_packages.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ load_data_package <- function(reference_id,
182182
#' z <- .extract_tbl(x)
183183
#' }
184184
extract_tbl <- function(x) {
185-
if (is_tibble(x))
185+
if (tibble::is_tibble(x))
186186
return(list(x))
187187
if (!is.list(x))
188188
return(NULL)

0 commit comments

Comments
 (0)