From 130947dcea38237c82880748adac6a978346241e Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Wed, 4 Mar 2026 22:52:43 +0530 Subject: [PATCH] test: format blocked-task schema regression assertions --- backend/tests/test_openapi_blocked_task_error_schema.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/tests/test_openapi_blocked_task_error_schema.py b/backend/tests/test_openapi_blocked_task_error_schema.py index 0ae6075f..d6e81f2f 100644 --- a/backend/tests/test_openapi_blocked_task_error_schema.py +++ b/backend/tests/test_openapi_blocked_task_error_schema.py @@ -23,5 +23,7 @@ def test_openapi_blocked_task_error_includes_code_field() -> None: has_string_branch = any(branch.get("type") == "string" for branch in any_of) assert has_string_branch - has_null_branch = any(branch.get("type") == "null" or branch.get("nullable") is True for branch in any_of) + has_null_branch = any( + branch.get("type") == "null" or branch.get("nullable") is True for branch in any_of + ) assert has_null_branch