(
self,
exc_type: type[BaseException] | None,
exc: BaseException | None,
exc_tb: TracebackType | None,
)
| 223 | return self |
| 224 | |
| 225 | async def __aexit__( |
| 226 | self, |
| 227 | exc_type: type[BaseException] | None, |
| 228 | exc: BaseException | None, |
| 229 | exc_tb: TracebackType | None, |
| 230 | ) -> None: |
| 231 | await self.close() |
| 232 | |
| 233 | async def close(self) -> None: |
| 234 | """ |