(self)
| 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") |
| 100 | |
| 101 | async def ps(self) -> Tuple[int, str, str]: |
| 102 | return await self.run_command("ps") |
nothing calls this directly
no test coverage detected