-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
need-feedback 📢We need your response (question)We need your response (question)p0-bug-critical ☢Exception rasingException rasingsubmodule-notebook 📓Much web such IDEMuch web such IDEto-review 🔍Awaiting final confirmationAwaiting final confirmation
Milestone
Description
In a Jupyter notebook, if I do
import tqdm, time
pbar = tqdm.tqdm(total=10)
for k in range(10):
pbar.update(.1)
time.sleep(.1)
I get a bar with no problems, but
import tqdm, time
pbar = tqdm.tqdm_notebook(total=10)
for k in range(100):
pbar.update(.1)
time.sleep(.1)
fails with ValueError: invalid literal for int() with base 10: '0.2'
. This worked until quite recently.
Metadata
Metadata
Assignees
Labels
need-feedback 📢We need your response (question)We need your response (question)p0-bug-critical ☢Exception rasingException rasingsubmodule-notebook 📓Much web such IDEMuch web such IDEto-review 🔍Awaiting final confirmationAwaiting final confirmation