Close the HTTP client.
(self)
| 102 | await self.rate_limiter.acquire() |
| 103 | return await self._client.head(url, headers=headers) |
| 104 | |
| 105 | async def close(self) -> None: |
| 106 | """Close the HTTP client.""" |
| 107 | await self._client.aclose() |
| 108 | |
| 109 | async def __aenter__(self) -> "HTTPClient": |
no outgoing calls
no test coverage detected