_tqdm_gui.py 287 B

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