From 9908fcdf73b8c1af8d5f679c0a5b67e6a9c3f1fa Mon Sep 17 00:00:00 2001 From: "Gergely Daroczi (@daroczig)" Date: Fri, 24 Jan 2025 13:48:09 +0100 Subject: [PATCH] suppress lintr on complexity of botor_client --- R/botor.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/botor.R b/R/botor.R index 38f743d..1fe039c 100644 --- a/R/botor.R +++ b/R/botor.R @@ -79,7 +79,7 @@ clients <- new.env() #' @return cached AWS client #' @importFrom checkmate assert_string assert_flag #' @export -botor_client <- function(service, type = c('client', 'resource'), cache = TRUE, ...) { +botor_client <- function(service, type = c('client', 'resource'), cache = TRUE, ...) { # nolint assert_string(service) assert_flag(cache)