Skip to content

Commit

Permalink
style: revert comma delete
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitrioglo committed Feb 17, 2024
1 parent 6d015f6 commit 4a2e5ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def protoc(
"--custom_opt=pydantic_dataclasses",
f"--proto_path={path.as_posix()}",
f"--custom_out={output_dir.as_posix()}",
*[p.as_posix() for p in path.glob("**/*.proto")]
*[p.as_posix() for p in path.glob("**/*.proto")],
]
else:
command = [
Expand All @@ -94,7 +94,7 @@ async def protoc(
"grpc.tools.protoc",
f"--proto_path={path.as_posix()}",
f"--{python_out_option}={output_dir.as_posix()}",
*[p.as_posix() for p in path.glob("**/*.proto")]
*[p.as_posix() for p in path.glob("**/*.proto")],
]
proc = await asyncio.create_subprocess_exec(
*command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE
Expand Down

0 comments on commit 4a2e5ed

Please sign in to comment.