Merge pull request 'vms: simplify args passed to create_subprocess_exec' (#351) from Mic92-main into main

This commit is contained in:
clan-bot
2023-09-27 10:32:25 +00:00

View File

@@ -92,8 +92,7 @@ async def inspect_vm(
) -> VmInspectResponse: ) -> VmInspectResponse:
cmd = nix_inspect_vm_cmd(flake_attr, flake_url=flake_url) cmd = nix_inspect_vm_cmd(flake_attr, flake_url=flake_url)
proc = await asyncio.create_subprocess_exec( proc = await asyncio.create_subprocess_exec(
cmd[0], *cmd,
*cmd[1:],
stdout=asyncio.subprocess.PIPE, stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,
) )