From feffe5b82468a510527f6c588697228731883837 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Wed, 3 Dec 2025 21:00:56 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Auto=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_ast_inference.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_ast_inference.py b/tests/test_ast_inference.py index 1109814a8..c0c773bd1 100644 --- a/tests/test_ast_inference.py +++ b/tests/test_ast_inference.py @@ -121,8 +121,6 @@ def get_arg_types(a: int, b: str, c: bool, d: float) -> Dict[str, Any]: return {"int_val": a, "str_val": b, "bool_val": c, "float_val": d} - - client = TestClient(app) @@ -319,7 +317,6 @@ def test_openapi_schema_ast_inference(): assert arg_types_props["float_val"]["type"] == "number" - def test_infer_response_model_edge_cases() -> None: """Test edge cases for infer_response_model_from_ast function."""