(self)
| 36 | self.container_id: Optional[str] = None |
| 37 | |
| 38 | async def initialize(self): |
| 39 | res = await self.controller.start_session(self.image) |
| 40 | self.session_id = res[0] |
| 41 | self.container_id = res[1][self.image] |
| 42 | |
| 43 | async def __aenter__(self): |
| 44 | await self.initialize() |
no outgoing calls
no test coverage detected