_main.py 283 B

123456789
  1. from warnings import warn
  2. from .cli import * # NOQA
  3. from .cli 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.cli.*` instead of `tqdm._main.*`",
  7. TqdmDeprecationWarning, stacklevel=2)