from tqdm.notebook import tqdm
I don't think that we need the tqdm package in the notebook. It's not needed for the task and instead created issues for participants, so it was removed from the for loop anyway... and in the end, it's just supposed to show a progress bar, so why bother having it in the notebook?
Additionally, since we do not create separate environments for projects and work in base only, we might not want to clutter it with unnecessary packages, because the more packages, the more potential for conflict or corruption of base.
from tqdm.notebook import tqdm
I don't think that we need the tqdm package in the notebook. It's not needed for the task and instead created issues for participants, so it was removed from the for loop anyway... and in the end, it's just supposed to show a progress bar, so why bother having it in the notebook?
Additionally, since we do not create separate environments for projects and work in
baseonly, we might not want to clutter it with unnecessary packages, because the more packages, the more potential for conflict or corruption ofbase.