(self, args: Sequence[str])
| 32 | class Container(Type): |
| 33 | @typecheck |
| 34 | def with_exec(self, args: Sequence[str]) -> "Container": |
| 35 | return Container(self._ctx) |
| 36 | |
| 37 | @typecheck |
| 38 | def with_env_variable(self, name: str, value: str) -> "Container": |
no test coverage detected