(self, timeout: float)
| 56 | |
| 57 | class _TimeoutSession(requests.Session): |
| 58 | def __init__(self, timeout: float) -> None: |
| 59 | super().__init__() |
| 60 | self._timeout = timeout |
| 61 | |
| 62 | def request(self, *args, **kwargs): |
| 63 | kwargs.setdefault("timeout", self._timeout) |
nothing calls this directly
no outgoing calls
no test coverage detected