Subsync first implementation (only after download/upload).

This commit is contained in:
Louis Vézina 2020-06-10 12:04:54 -04:00
parent f79faaa5c5
commit c6548c06b7
271 changed files with 56072 additions and 15 deletions

View file

@ -0,0 +1,7 @@
from .notebook import * # NOQA
from .notebook 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.notebook.*` instead of `tqdm._tqdm_notebook.*`",
TqdmDeprecationWarning, stacklevel=2)