(self, exc_type: Any, exc_val: Any, exc_tb: Any)
| 407 | return cast(T_conn, self.connection) |
| 408 | |
| 409 | async def __aexit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None: |
| 410 | # release the connection back to the pool |
| 411 | await self.client._pool.release(self.connection) |