Skip to content

Commit

Permalink
remove TqdmExperimentalWarning (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoralez committed Jun 11, 2024
1 parent 3b0cc37 commit 1a711dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nbs/src/core/core.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
"import utilsforecast.processing as ufp\n",
"from fugue.execution.factory import make_execution_engine, try_get_context_execution_engine\n",
"from threadpoolctl import threadpool_limits\n",
"from tqdm.autonotebook import tqdm\n",
"from tqdm.auto import tqdm\n",
"from triad import conditional_dispatcher\n",
"from utilsforecast.compat import DataFrame, pl_DataFrame, pl_Series\n",
"from utilsforecast.grouped_array import GroupedArray as BaseGroupedArray\n",
Expand Down
2 changes: 1 addition & 1 deletion statsforecast/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
try_get_context_execution_engine,
)
from threadpoolctl import threadpool_limits
from tqdm.autonotebook import tqdm
from tqdm.auto import tqdm
from triad import conditional_dispatcher
from utilsforecast.compat import DataFrame, pl_DataFrame, pl_Series
from utilsforecast.grouped_array import GroupedArray as BaseGroupedArray
Expand Down

0 comments on commit 1a711dd

Please sign in to comment.