(self)
| 331 | self.close() |
| 332 | |
| 333 | async def __aenter__(self): |
| 334 | await self.connect_async() |
| 335 | return self |
| 336 | |
| 337 | async def __aexit__(self, exc_type, exc_val, exc_tb): |
| 338 | await self.close_async() |
nothing calls this directly
no test coverage detected