_tqdm_notebook.py 307 B

123456789
  1. from warnings import warn
  2. from .notebook import * # NOQA
  3. from .notebook import __all__ # NOQA
  4. from .std import TqdmDeprecationWarning
  5. warn("This function will be removed in tqdm==5.0.0\n"
  6. "Please use `tqdm.notebook.*` instead of `tqdm._tqdm_notebook.*`",
  7. TqdmDeprecationWarning, stacklevel=2)