Update most test/lint dependencies (#15582)

This commit is contained in:
renovate[bot]
2026-04-01 17:54:51 +02:00
committed by GitHub
parent 8ffc43610f
commit 8b31f2639e
142 changed files with 310 additions and 357 deletions
+2 -2
View File
@@ -11,5 +11,5 @@ class DummyTqdmFile(ObjectWrapper):
def __del__(self) -> None: ...
def tenumerate(iterable, start: int = 0, total=None, tqdm_class: type[Incomplete] = ..., **tqdm_kwargs): ...
def tzip(iter1, *iter2plus, **tqdm_kwargs) -> Generator[Incomplete, None, None]: ...
def tmap(function: Callable[..., Incomplete], *sequences, **tqdm_kwargs) -> Generator[Incomplete, None, None]: ...
def tzip(iter1, *iter2plus, **tqdm_kwargs) -> Generator[Incomplete]: ...
def tmap(function: Callable[..., Incomplete], *sequences, **tqdm_kwargs) -> Generator[Incomplete]: ...
+1 -1
View File
@@ -3,4 +3,4 @@ from collections.abc import Generator, Iterable
__all__ = ["product"]
def product(*iterables: Iterable[Incomplete], **tqdm_kwargs) -> Generator[Incomplete, None, None]: ...
def product(*iterables: Iterable[Incomplete], **tqdm_kwargs) -> Generator[Incomplete]: ...