Async context manager exit - closes connection.
(
self, _exc_type: type | None, _exc_val: Exception | None, _exc_tb: object
)
| 734 | return self |
| 735 | |
| 736 | async def __aexit__( |
| 737 | self, _exc_type: type | None, _exc_val: Exception | None, _exc_tb: object |
| 738 | ) -> None: |
| 739 | """Async context manager exit - closes connection.""" |
| 740 | await self.close() |