Skip to content

Commit b5786a6

Browse files
committed
test commit
1 parent 76bf243 commit b5786a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/auth.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#' Get the API key
2+
#' @aliases get_auth_key_test
23
#'
34
#' Get the API key from the environment variable `DELPHI_EPIDATA_KEY` or
45
#' `getOption("delphi.epidata.key")`.
@@ -9,7 +10,7 @@
910
get_auth_key <- function() {
1011
key <- Sys.getenv("DELPHI_EPIDATA_KEY", unset = "")
1112
if (key != "") {
12-
return(key)
13+
return(key)
1314
}
1415

1516
key <- getOption("delphi.epidata.key", default = "")

0 commit comments

Comments
 (0)