tests_notebook.py 248 B

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