Big diff: use lower-case list and dict (#5888)

This commit is contained in:
Akuli
2021-08-08 19:26:35 +03:00
committed by GitHub
parent 11f54c3407
commit ce11072dbe
325 changed files with 2196 additions and 2334 deletions

View File

@@ -1,13 +1,13 @@
from _typeshed import IdentityFunction
from logging import Logger
from typing import Any, Callable, Dict, Sequence, Tuple, Type, TypeVar
from typing import Any, Callable, Sequence, Tuple, Type, TypeVar
_R = TypeVar("_R")
def retry_call(
f: Callable[..., _R],
fargs: Sequence[Any] | None = ...,
fkwargs: Dict[str, Any] | None = ...,
fkwargs: dict[str, Any] | None = ...,
exceptions: Type[Exception] | Tuple[Type[Exception], ...] = ...,
tries: int = ...,
delay: float = ...,