From e38e4b2f039cb0c67ccb9ceaf61c34ad0802f2ec Mon Sep 17 00:00:00 2001 From: Rich FitzJohn Date: Tue, 22 Oct 2024 21:33:18 +0100 Subject: [PATCH] Tidy up the diff --- R/outpack_http_client.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/outpack_http_client.R b/R/outpack_http_client.R index bb9e0cf4..880a8ba0 100644 --- a/R/outpack_http_client.R +++ b/R/outpack_http_client.R @@ -8,7 +8,7 @@ outpack_http_client <- R6::R6Class( initialize = function(url, authorise = NULL) { self$url <- sub("/$", "", url) if (is.null(authorise)) { - self$authorise <- function(...) NULL + self$authorise <- function() NULL } else { self$authorise <- authorise }