(self, cmd: str | List[str])
| 8 | |
| 9 | class CommandExecutor(Protocol): |
| 10 | async def execute(self, cmd: str | List[str]) -> Tuple[int, str, str]: |
| 11 | pass |
| 12 | |
| 13 | |
| 14 | class WindowsExecutor: |
nothing calls this directly
no outgoing calls
no test coverage detected