From fb0213bd581e76b264c80874af6289df75006331 Mon Sep 17 00:00:00 2001 From: Artur Chakhvadze Date: Sun, 8 Sep 2024 00:30:49 +0400 Subject: [PATCH] Make linter happy. --- tests/test_runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_runtime.py b/tests/test_runtime.py index 52beb20..2d26f21 100644 --- a/tests/test_runtime.py +++ b/tests/test_runtime.py @@ -187,7 +187,7 @@ def error_prone_function() -> int: raise NotImplementedError with pytest.raises(SchemaValidationError): - result = error_prone_function() + error_prone_function() assert mock_model.call_count == 4 # Initial call + 3 retries