(self)
| 93 | return await self.run_command("down", "--volumes") |
| 94 | |
| 95 | async def pull(self) -> Tuple[int, str, str]: |
| 96 | return await self.run_command("pull") |
| 97 | |
| 98 | async def up(self) -> Tuple[int, str, str]: |
| 99 | return await self.run_command("up", "-d") |
nothing calls this directly
no test coverage detected