We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e21467 commit b606d6cCopy full SHA for b606d6c
daft/runners/progress_bar.py
@@ -26,7 +26,7 @@ def get_tqdm(use_ray_tqdm: bool) -> Any:
26
# source: https://github.com/tqdm/tqdm/blob/74722959a8626fd2057be03e14dcf899c25a3fd5/tqdm/autonotebook.py#L14
27
if ipython is not None and "IPKernelApp" in ipython.config:
28
29
- class tqdm(_tqdm[Any]): # type: ignore[no-redef]
+ class tqdm(_tqdm): # type: ignore[no-redef]
30
def __init__(self, *args: Any, **kwargs: Any) -> None:
31
kwargs = kwargs.copy()
32
if "file" not in kwargs:
0 commit comments