Skip to content

Commit

Permalink
suppress readr/vroom warnings (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed May 27, 2022
1 parent 0b2990a commit 649cb31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/rdf_query.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ getResults <- function(queryResult, format = "csv", ...){
mimetype <- switch(format,
"csv" = "text/csv; charset=utf-8",
NULL)
readr::read_csv(redland::librdf_query_results_to_string2(
readr::read_csv(I(redland::librdf_query_results_to_string2(
queryResult@librdf_query_results,
format, mimetype, NULL, NULL),
format, mimetype, NULL, NULL)),
progress = FALSE, show_col_types = FALSE,
...)
}
Expand Down

0 comments on commit 649cb31

Please sign in to comment.