You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cli_progress_along() seems to be skipping the first iteration, and after 2 seconds, the function outputs the message regarding the first iteration even though it is on the second?
library(cli)
lapply(cli_progress_along(1:2,
format="Downloading data file {cli::pb_current}"),
function(i) {
Sys.sleep(2)
})
#> Downloading data file 1#> [[1]]#> NULL#> #> [[2]]#> NULL