blob: 004d7e57b2f378e4979a8b8e47b969c81114956f (
plain)
1
2
3
4
5
6
7
|
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")
|