From 087952a8dfddea567406d1685aa081fc6b5f30cc Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 15 Jan 2026 16:28:54 -0800 Subject: [PATCH] fix mypy linting --- .../anthropic/experimental_pass_through/transformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/experimental_pass_through/transformation.py b/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/experimental_pass_through/transformation.py index 6f8578259db..0bedef3276b 100644 --- a/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/experimental_pass_through/transformation.py +++ b/litellm/llms/vertex_ai/vertex_ai_partner_models/anthropic/experimental_pass_through/transformation.py @@ -58,7 +58,7 @@ class VertexAIPartnerModelsAnthropicMessagesConfig(AnthropicMessagesConfig, Vert # Add beta headers for Vertex AI tools = optional_params.get("tools", []) - beta_values = set() + beta_values: set[str] = set() # Get existing beta headers if any existing_beta = headers.get("anthropic-beta")