Skip to content

Commit 82b607f

Browse files
authored
Merge pull request #136 from cmu-delphi/ds/fix
bug: missing tibble import
2 parents 12c1811 + 1ad2557 commit 82b607f

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ importFrom(magrittr,"%>%")
6666
importFrom(readr,read_csv)
6767
importFrom(rlang,abort)
6868
importFrom(tibble,as_tibble)
69+
importFrom(tibble,tibble)
6970
importFrom(xml2,read_html)
7071
importFrom(xml2,xml_find_all)
7172
importFrom(xml2,xml_text)

R/epidatacall.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ fetch <- function(epidata_call, fields = NULL, disable_date_parsing = FALSE, ret
145145
#' @importFrom readr read_csv
146146
#' @importFrom httr stop_for_status content
147147
#' @importFrom rlang abort
148+
#' @importFrom tibble as_tibble tibble
148149
#' @return
149150
#' - For `fetch_tbl`: a [`tibble::tibble`]
150-
#' @importFrom tibble as_tibble
151151
#' @keywords internal
152152
fetch_tbl <- function(epidata_call, fields = NULL, disable_date_parsing = FALSE, return_empty = FALSE, timeout_seconds = 30) {
153153
stopifnot(inherits(epidata_call, "epidata_call"))

man/fetch_classic.Rd

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/fetch_tbl.Rd

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)