Method
__init__
(
self,
timeout=None, # type: timedelta
parent_span=None, # type: Optional[RequestSpan]
with_expiry=None, # type: bool
project=None, # type: Iterable[str]
transcoder=None, # type: Transcoder
per_key_options=None, # type: Dict[str, GetOptions]
return_exceptions=None # type: Optional[bool]
)
Source from the content-addressed store, hash-verified
| 994 | """ # noqa: E501 |
| 995 | @overload |
| 996 | def __init__( |
| 997 | self, |
| 998 | timeout=None, # type: timedelta |
| 999 | parent_span=None, # type: Optional[RequestSpan] |
| 1000 | with_expiry=None, # type: bool |
| 1001 | project=None, # type: Iterable[str] |
| 1002 | transcoder=None, # type: Transcoder |
| 1003 | per_key_options=None, # type: Dict[str, GetOptions] |
| 1004 | return_exceptions=None # type: Optional[bool] |
| 1005 | ): |
| 1006 | pass |
| 1007 | |
| 1008 | def __init__(self, **kwargs): |
| 1009 | kwargs = {k: v for k, v in kwargs.items() if v is not None} |
Callers
nothing calls this directly
Tested by
no test coverage detected