Close the underlying HTTPX client. The client will *not* be usable after this.
(self)
| 1526 | return self._client.is_closed |
| 1527 | |
| 1528 | async def close(self) -> None: |
| 1529 | """Close the underlying HTTPX client. |
| 1530 | |
| 1531 | The client will *not* be usable after this. |
| 1532 | """ |
| 1533 | await self._client.aclose() |
| 1534 | |
| 1535 | async def __aenter__(self: _T) -> _T: |
| 1536 | return self |