(self)
| 47 | self.database: Optional[str] = None |
| 48 | |
| 49 | async def initialize(self): |
| 50 | session_id, container_ids, container_ips = await self.env_controller.start_session(self.type) |
| 51 | self.session_id = session_id |
| 52 | self.container_id = container_ids[self.type] |
| 53 | self.container_ip = container_ips[self.type] |
| 54 | await self._create_database() |
| 55 | |
| 56 | async def delete(self): |
| 57 | if self.database: |
no test coverage detected