From 138adec5e7d0719383880622e2ca8f2e973a38ce Mon Sep 17 00:00:00 2001 From: mateo Date: Tue, 22 Sep 2026 02:16:00 +0000 Subject: [PATCH] test(proxy): annotate get_config test double return type Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- tests/test_litellm/proxy/agent_endpoints/test_endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_litellm/proxy/agent_endpoints/test_endpoints.py b/tests/test_litellm/proxy/agent_endpoints/test_endpoints.py index 52ea7634ac8..f030714f135 100644 --- a/tests/test_litellm/proxy/agent_endpoints/test_endpoints.py +++ b/tests/test_litellm/proxy/agent_endpoints/test_endpoints.py @@ -1075,7 +1075,7 @@ class _DbBackedProxyConfig: def __init__(self, stored_litellm_settings: dict[str, object] | None = None) -> None: self.stored_litellm_settings_json: str = json.dumps(stored_litellm_settings or {}) - async def get_config(self): + async def get_config(self) -> ProxyRuntimeConfig: from litellm.proxy.proxy_server import ProxyConfig db_param_value: Final[dict[str, object]] = json.loads(self.stored_litellm_settings_json)