[Doc]: fix typos in Python comments (#24042)

Signed-off-by: Didier Durand <durand.didier@gmail.com>
Co-authored-by: Jee Jee Li <pandaleefree@gmail.com>
This commit is contained in:
Didier Durand
2025-09-02 04:07:45 +02:00
committed by GitHub
parent a344a5aa0a
commit 0235103cbb
12 changed files with 14 additions and 14 deletions

View File

@@ -161,7 +161,7 @@ async def write_local_file(output_path: str,
batch_outputs: The list of batch outputs to write.
"""
# We should make this async, but as long as run_batch runs as a
# standalone program, blocking the event loop won't effect performance.
# standalone program, blocking the event loop won't affect performance.
with open(output_path, "w", encoding="utf-8") as f:
for o in batch_outputs:
print(o.model_dump_json(), file=f)