I'm using Python 3.11.9. The following code does not produce any progress bar when running inside a Jupyter notebook. ```py from fastcore.parallel import parallel def _f(x): return x*x parallel(_f, range(10), n_workers=2, progress=True, pause=0.25) ```