mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 02:57:14 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -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 = ...,
|
||||
|
||||
Reference in New Issue
Block a user