(self)
| 109 | return asyncio.run(self.areset(seed=seed, options=options)) |
| 110 | |
| 111 | async def aclose(self) -> None: |
| 112 | if self.reset_finished: |
| 113 | await self.context_manager.__aexit__() |
| 114 | |
| 115 | def close(self) -> None: |
| 116 | asyncio.run(self.aclose()) |
no outgoing calls