Update black

This commit is contained in:
James
2020-08-29 16:15:59 +01:00
committed by GitHub
parent 9ef5503728
commit 16d554db75
9 changed files with 168 additions and 151 deletions

View File

@@ -42,7 +42,7 @@ async def protoc(
*[p.as_posix() for p in path.glob("*.proto")],
]
proc = await asyncio.create_subprocess_exec(
*command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE,
*command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
)
stdout, stderr = await proc.communicate()
return stdout, stderr, proc.returncode