Skip to content

Commit 718368f

Browse files
committed
fix(utils): fix prefix in sync client
1 parent 88dd13f commit 718368f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

utils/run-unasync.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ def collect_class_replacements(source_dir: Path) -> dict[str, str]:
2323
async_name = match.group(1)
2424
replacements[async_name] = async_name[len("Async") :]
2525
replacements["aclose"] = "close"
26+
replacements["aiter_lines"] = "iter_lines"
27+
replacements["aread"] = "read"
2628
return replacements
2729

2830

0 commit comments

Comments
 (0)