diff --git a/libs/core/tests/unit_tests/runnables/test_batch_ordering.py b/libs/core/tests/unit_tests/runnables/test_batch_ordering.py index f69e319d1ca..5b042f0d1d9 100644 --- a/libs/core/tests/unit_tests/runnables/test_batch_ordering.py +++ b/libs/core/tests/unit_tests/runnables/test_batch_ordering.py @@ -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__": +