Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions stubs/tqdm/METADATA.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ extras = ["slack", "telegram"]
# Python 3.13: https://github.com/tensorflow/tensorflow/issues/78774.
# Also remove tqdm.keras from @tests/stubtest_allowlist.txt.
stubtest_requirements = ["dask", "pandas", "rich"]
stubtest_ignore = ["tqdm_dist_ver"]
4 changes: 2 additions & 2 deletions stubs/tqdm/tqdm/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ __all__ = [
"__version__",
]

def tqdm_notebook(*args, **kwargs) -> tqdm_notebook_cls[Incomplete]: ...
def tnrange(*args, **kwargs) -> tqdm_notebook_cls[int]: ...
def tqdm_notebook(*args) -> tqdm_notebook_cls[Incomplete]: ...
def tnrange(*args) -> tqdm_notebook_cls[int]: ...
2 changes: 1 addition & 1 deletion stubs/tqdm/tqdm/std.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TqdmTypeError(TypeError): ...
class TqdmKeyError(KeyError): ...

class TqdmWarning(Warning):
def __init__(self, msg, fp_write=None, *a, **k) -> None: ...
def __init__(self, msg, fp_write=None) -> None: ...

class TqdmExperimentalWarning(TqdmWarning, FutureWarning): ...
class TqdmDeprecationWarning(TqdmWarning, DeprecationWarning): ...
Expand Down
Loading