-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
duplicate 🗐Seen it beforeSeen it before
Description
See #398 for the original issue. This was closed with #464, but that didn't actually fix the issue. Pull request #399 fixes the issue for me.
Failing test:
from time import sleep
from tqdm import tqdm
def two_bars_with_surrounding_write():
tqdm.write("starting")
sleep(1)
a = tqdm(total=10)
b = tqdm(total=100)
sleep(1)
a.update()
b.update()
tqdm.write("finished")
sleep(1)
tqdm.write("finished again")
sleep(1)
two_bars_with_surrounding_write()
"""starting text shows but neither finished text shows"""
Metadata
Metadata
Assignees
Labels
duplicate 🗐Seen it beforeSeen it before