(self)
| 49 | self._session = aiohttp.ClientSession(connector=self._connector, headers=self._headers) |
| 50 | |
| 51 | async def __aenter__(self): |
| 52 | return self |
| 53 | |
| 54 | async def __aexit__(self, exc_type, exc, tb): |
| 55 | await self._session.close() |
nothing calls this directly
no outgoing calls
no test coverage detected