Skip to content

Commit

Permalink
Fixed dplyr 1.0.0 deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
zozlak committed Aug 3, 2020
1 parent c596cbc commit f77bf1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/S2_do_query.R
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ S2_do_query = function(query, path, baseUrl = 'https://s2.boku.eodc.eu'){
)

if ('dplyr' %in% utils::installed.packages()) {
rtrn = dplyr::as.tbl(rtrn)
rtrn = tibble::as_tibble(rtrn)
}

return(rtrn)
Expand Down

0 comments on commit f77bf1b

Please sign in to comment.