(
self,
exc_type: type[BaseException] | None,
exc: BaseException | None,
exc_tb: TracebackType | None,
)
| 1536 | return self |
| 1537 | |
| 1538 | async def __aexit__( |
| 1539 | self, |
| 1540 | exc_type: type[BaseException] | None, |
| 1541 | exc: BaseException | None, |
| 1542 | exc_tb: TracebackType | None, |
| 1543 | ) -> None: |
| 1544 | await self.close() |
| 1545 | |
| 1546 | async def _prepare_options( |
| 1547 | self, |