(
self,
exc_type: type[BaseException] | None,
exc_val: BaseException | None,
exc_tb: TracebackType | None,
)
| 305 | raise |
| 306 | |
| 307 | async def __aexit__( |
| 308 | self, |
| 309 | exc_type: type[BaseException] | None, |
| 310 | exc_val: BaseException | None, |
| 311 | exc_tb: TracebackType | None, |
| 312 | ) -> None: |
| 313 | await self.exit_stack.aclose() |