Update tqdm stubs to 4.65.* (#9840)

This commit is contained in:
Alex Waygood
2023-03-04 18:06:40 +00:00
committed by GitHub
parent 257e287fec
commit 9472dc10b9
2 changed files with 2 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
version = "4.64.*"
version = "4.65.*"
[tool.stubtest]
extras = ["slack", "telegram"]

View File

@@ -83,7 +83,7 @@ class tqdm(Generic[_T], Iterable[_T], Comparable):
position: int | None = ...,
postfix: Mapping[str, object] | str | None = ...,
unit_divisor: float = ...,
write_bytes: bool | None = ...,
write_bytes: bool = False,
lock_args: tuple[bool | None, float | None] | tuple[bool | None] | None = ...,
nrows: int | None = ...,
colour: str | None = ...,
@@ -196,7 +196,6 @@ class tqdm(Generic[_T], Iterable[_T], Comparable):
start_t: Incomplete
def __bool__(self) -> bool: ...
def __nonzero__(self) -> bool: ...
def __len__(self) -> int: ...
def __reversed__(self) -> Iterator[_T]: ...
def __contains__(self, item: object) -> bool: ...