(self, runner: "Runner", command: str, **kwargs: Any)
| 125 | # Fabric/etc, which needs to juggle multiple runner class types (local and |
| 126 | # remote). |
| 127 | def _run(self, runner: "Runner", command: str, **kwargs: Any) -> Result: |
| 128 | command = self._prefix_commands(command) |
| 129 | return runner.run(command, **kwargs) |
| 130 | |
| 131 | def sudo(self, command: str, **kwargs: Any) -> Result: |
| 132 | """ |
no test coverage detected