From 6be000f1f35091cbbdfedb7df4e0dd8d494c0eaf Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Tue, 25 Aug 2026 10:23:12 -0700 Subject: [PATCH] test(bedrock_mantle): type _repo_cost_map return instead of bare dict --- .../test_bedrock_mantle_responses_transformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_litellm/llms/bedrock_mantle/test_bedrock_mantle_responses_transformation.py b/tests/test_litellm/llms/bedrock_mantle/test_bedrock_mantle_responses_transformation.py index fd279a2bc1f..28c6060e5cc 100644 --- a/tests/test_litellm/llms/bedrock_mantle/test_bedrock_mantle_responses_transformation.py +++ b/tests/test_litellm/llms/bedrock_mantle/test_bedrock_mantle_responses_transformation.py @@ -1568,7 +1568,7 @@ class TestBedrockMantleResponsesPricing: assert "bedrock_mantle/openai.gpt-5.4" in litellm.bedrock_mantle_models -def _repo_cost_map(map_name: str) -> dict: +def _repo_cost_map(map_name: str) -> dict[str, dict[str, object]]: repo_root = Path(__file__).resolve().parents[4] paths = { "root": repo_root / "model_prices_and_context_window.json",