From 5b481ac5ee50d676a2ca4e0abe07a0d231ee3e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20M=C3=BCller?= <67061560+MagMueller@users.noreply.github.com> Date: Sat, 25 Oct 2025 09:59:37 -0700 Subject: [PATCH] Linter --- tests/ci/models/test_llm_models.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/ci/models/test_llm_models.py b/tests/ci/models/test_llm_models.py index 76e9da8e9..c955c0887 100644 --- a/tests/ci/models/test_llm_models.py +++ b/tests/ci/models/test_llm_models.py @@ -26,7 +26,6 @@ MODELS_TO_TEST = [ pytest.param(ChatAnthropic, 'claude-sonnet-4-0', 'ANTHROPIC_API_KEY', {}, id='anthropic_claude_sonnet_4_0'), # Google models (from gemini.py) pytest.param(ChatGoogle, 'gemini-flash-latest', 'GOOGLE_API_KEY', {}, id='google_gemini_flash_latest'), - # Azure OpenAI (from azure_openai.py) - needs both API key and endpoint pytest.param( ChatAzureOpenAI, @@ -37,7 +36,6 @@ MODELS_TO_TEST = [ ), # Browser Use LLM (from browser_use_llm.py) pytest.param(ChatBrowserUse, 'bu-latest', 'BROWSER_USE_API_KEY', {}, id='browser_use_bu_latest'), - # OpenRouter (from openrouter.py) pytest.param( ChatOpenAI, @@ -45,7 +43,7 @@ MODELS_TO_TEST = [ 'OPENROUTER_API_KEY', {'base_url': 'https://openrouter.ai/api/v1'}, id='openrouter_grok_4_mini', - ) + ), ]