Skip to content

Commit

Permalink
add silent=TRUE in try()
Browse files Browse the repository at this point in the history
add silent=TRUE in try() to avoid error in check log
  • Loading branch information
VincentGuyader authored Dec 7, 2023
1 parent 8dbe586 commit 364bcb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.onLoad <- function(libname, pkgname){
if (Sys.getenv("SENDGRID_API") != "") {
try(
try(silent=TRUE,
keyring::key_set_with_value(service = "apikey",
username = "sendgridr",
password = Sys.getenv("SENDGRID_API"))
Expand Down

0 comments on commit 364bcb9

Please sign in to comment.