Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-09-09 23:47:04 +00:00
parent 99dd6aad65
commit 3fa8180722

View File

@@ -31,6 +31,7 @@ class OrderTrackingRunnable(Runnable[str, str]):
self, input: str, config: Optional[RunnableConfig] = None, **kwargs: Any
) -> str:
"""Process input and track order."""
del config, kwargs # Unused but required by interface
# Track when this item started processing
self.processing_order.append(input)
@@ -308,3 +309,4 @@ if __name__ == "__main__":
test_batch_empty_input()
test_batch_single_input()