Skip to content

Commit

Permalink
Minor fixes (#35)
Browse files Browse the repository at this point in the history
merged by PR Scheduler
  • Loading branch information
pr-scheduler[bot] authored Sep 24, 2024
2 parents dd33980 + c5cd5f9 commit f335771
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ source("renv/activate.R")

if (interactive()) {
suppressMessages(require(devtools))
suppressMessages(require(testthat))
devtools::dev_sitrep()
}
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ export(get_data)
export(get_map_data)
export(reverse)
export(status_check)
importFrom(tidyRSS,tidyfeed)
1 change: 1 addition & 0 deletions R/get_map_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ get_map_data <- function(type, cache = TRUE) {
if (memoise::has_cache(get_map_data_w_cache)(type)) {
cli::cli_alert("Using cached response.")
}

get_map_data_w_cache(type = type)
} else if (cache == FALSE) {
get_map_data_nocache(type = type, cache = FALSE)
Expand Down
2 changes: 2 additions & 0 deletions R/status_check.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#'
#' @return Returns a data frame object with the services and their statuses. Is
#' only returned if `return_df = TRUE`.
#'
#' @importFrom tidyRSS tidyfeed
#' @export
#'
#' @examples
Expand Down

0 comments on commit f335771

Please sign in to comment.