1
0
Fork 0
tqdm/tests/tests_notebook.py
Daniel Baumann 2da88b2fbc
Adding upstream version 4.64.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 19:13:00 +01:00

7 lines
248 B
Python

from tqdm.notebook import tqdm as tqdm_notebook
def test_notebook_disabled_description():
"""Test that set_description works for disabled tqdm_notebook"""
with tqdm_notebook(1, disable=True) as t:
t.set_description("description")