Skip to content

Commit cc1a43a

Browse files
committed
test commit
1 parent 76bf243 commit cc1a43a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/style_and_doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,5 +104,5 @@ jobs:
104104
git config --local user.email "[email protected]"
105105
git add man/\* NAMESPACE DESCRIPTION
106106
git commit -m "docs: update documentation (GHA)" || echo "No changes to commit"
107-
git pull --ff-only
107+
git pull --rebase
108108
git push origin

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)