From 40aa1eaeb6fe9eb67580badf45516e859aea317b Mon Sep 17 00:00:00 2001 From: Lachlan Donald Date: Sat, 14 Jun 2025 21:09:47 +1000 Subject: [PATCH] Format test_auto_mode.py with black MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix code formatting to comply with black style requirements. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- tests/test_auto_mode.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_auto_mode.py b/tests/test_auto_mode.py index 33ef49f..3a2be41 100644 --- a/tests/test_auto_mode.py +++ b/tests/test_auto_mode.py @@ -225,7 +225,10 @@ class TestAutoMode: schema = tool.get_model_field_schema() assert "enum" in schema - assert all(model in schema["enum"] for model in ["flash", "pro", "o3", "o3-mini", "o3-pro", "o4-mini", "o4-mini-high"]) + assert all( + model in schema["enum"] + for model in ["flash", "pro", "o3", "o3-mini", "o3-pro", "o4-mini", "o4-mini-high"] + ) assert "select the most suitable model" in schema["description"] # Test normal mode