From ea716d311d9435a9b1025d8f633ad75fc05c2541 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 5 Sep 2024 15:47:18 -0700 Subject: [PATCH] fix typing error on test --- litellm/tests/test_function_call_parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_function_call_parsing.py b/litellm/tests/test_function_call_parsing.py index 98c3af4abe6..966a29c0a4f 100644 --- a/litellm/tests/test_function_call_parsing.py +++ b/litellm/tests/test_function_call_parsing.py @@ -37,7 +37,7 @@ class Trade: return Trade(order) -def trade(model_name: str) -> List[Trade]: +def trade(model_name: str) -> List[Trade]: # type: ignore def parse_order(order: dict) -> Trade: action = order["action"]