From c71de64dfe18a6bb7e94a35fe4331b450e32cbbb Mon Sep 17 00:00:00 2001 From: rikivillalba Date: Mon, 25 May 2026 14:34:52 -0300 Subject: [PATCH] change arg results to result in cli progress handlers impl --- R/progress-server.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/progress-server.R b/R/progress-server.R index f306132a..6ef7b295 100644 --- a/R/progress-server.R +++ b/R/progress-server.R @@ -316,7 +316,7 @@ builtin_handler_rstudio <- list( } }, - complete = function(bar, .envir, results) { + complete = function(bar, .envir, result) { if (!is.null(bar$rstudio_id)) { rstudioapi::jobRemove(bar$rstudio_id) } @@ -378,7 +378,7 @@ builtin_handler_shiny <- list( ) }, - complete = function(bar, .envir, results) { + complete = function(bar, .envir, result) { if (!is.null(bar$shiny_progress)) { bar$shiny_progress$set( value = bar$current,