(self)
| 451 | self._cleanup_client(self._client) |
| 452 | |
| 453 | async def aclose(self) -> None: |
| 454 | if '_client' not in self.__dict__: |
| 455 | return |
| 456 | if self._client.is_closed: |
| 457 | return |
| 458 | await self._client.aclose() |
| 459 | |
| 460 | def _get_retry_kwargs(self) -> dict[str, Any]: |
| 461 | """Returns the retry kwargs for tenacity.""" |
no outgoing calls
no test coverage detected