Apply patch [skip ci]

This commit is contained in:
open-swe[bot]
2025-09-09 23:47:38 +00:00
parent ddd1809a9d
commit 79f8adccd5

View File

@@ -230,6 +230,7 @@ def test_batch_no_race_conditions() -> None:
def invoke(
self, input: int, config: Optional[RunnableConfig] = None, **kwargs: Any
) -> int:
del config, kwargs # Unused but required by interface
# Simulate race condition scenario
current = self.counter
time.sleep(0.001) # Give other threads a chance to interfere
@@ -310,3 +311,4 @@ if __name__ == "__main__":