Closed jramosf closed 1 year ago
@mame any chance this can get merged? Thanks!
My intention was to not show (trial 1/3)
, and to show (trial 2/3)
and (trial 3/3)
.Can you just change trial(i+1)
to trial(i)
and keep the definition of trial
as is?
Owner
Done, ready-to-review
Thanks!
The only two usages of the
trial
function come fromrange
loop (starting at 0 on thewaitTimes
slice). Since we have(i+1)
in the theSprintf
args, there is now no possibility to get into thei == 0
if
branch.This also leaves both usages with
trial(i)
.