_tqdm_gui.py 285 B

1234567
  1. from .gui import * # NOQA
  2. from .gui import __all__ # NOQA
  3. from .std import TqdmDeprecationWarning
  4. from warnings import warn
  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)