Open resources without using a context manager.
(self)
| 154 | return None |
| 155 | |
| 156 | async def open(self) -> "LocalPlaywrightComputer": |
| 157 | """Open resources without using a context manager.""" |
| 158 | await self.__aenter__() |
| 159 | return self |
| 160 | |
| 161 | async def close(self) -> None: |
| 162 | """Close resources without using a context manager.""" |