summaryrefslogtreecommitdiffhomepage
path: root/libs/tqdm/_tqdm.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/tqdm/_tqdm.py')
-rw-r--r--libs/tqdm/_tqdm.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/tqdm/_tqdm.py b/libs/tqdm/_tqdm.py
index 694318ee7..7fc496277 100644
--- a/libs/tqdm/_tqdm.py
+++ b/libs/tqdm/_tqdm.py
@@ -1,7 +1,9 @@
+from warnings import warn
+
from .std import * # NOQA
from .std import __all__ # NOQA
from .std import TqdmDeprecationWarning
-from warnings import warn
+
warn("This function will be removed in tqdm==5.0.0\n"
"Please use `tqdm.std.*` instead of `tqdm._tqdm.*`",
TqdmDeprecationWarning, stacklevel=2)