(self)
| 13 | |
| 14 | @contextlib.asynccontextmanager |
| 15 | async def get_stack(self) -> typing.AsyncIterator[contextlib.AsyncExitStack]: |
| 16 | async with self.stack as stack: |
| 17 | yield stack |
| 18 | self.stack = stack.pop_all() |
| 19 | |
| 20 | async def __aexit__(self, *_) -> None: |
| 21 | await self.close() |
no outgoing calls
no test coverage detected