Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-09-09 23:50:16 +00:00
parent 9d0b44a461
commit 3835866914

View File

@@ -125,7 +125,7 @@ def test_batch_high_concurrency() -> None:
inputs = [f"input_{i:03d}" for i in range(100)]
# Process with high concurrency
config = {"max_concurrency": 20}
config: RunnableConfig = {"max_concurrency": 20}
outputs = runnable.batch(inputs, config=config)
# Verify order is preserved despite high concurrency
@@ -310,3 +310,4 @@ if __name__ == "__main__":
test_batch_single_input()