If I have a for loop with at `continue` in it, it doesn't seem that the progress bar gets updated. For example: ```julia julia> @progress for x in 1:100 sleep(0.05) continue end ```