Skip to content

Commit

Permalink
Merge pull request #302 from r-dbi/f-cleanup-1
Browse files Browse the repository at this point in the history
chore: No longer need `as.data.frame()` twice for Arrow
  • Loading branch information
aviator-app[bot] authored Nov 21, 2023
2 parents 2701682 + 5fee6a7 commit 7154a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ check_df <- function(df) {

check_arrow <- function(stream) {
# Arrow returns a tibble when it shouldn't
check_df(as.data.frame(as.data.frame(stream)))
check_df(as.data.frame(stream))
}

0 comments on commit 7154a76

Please sign in to comment.