From dd107f2804290900657b8b98f3097c31cfbc3ce9 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Wed, 18 Dec 2024 19:25:25 -0700 Subject: [PATCH] silence F821 --- new_features_examples/multi_tool_usage_agent.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/new_features_examples/multi_tool_usage_agent.py b/new_features_examples/multi_tool_usage_agent.py index 1af421e2..4d922c4b 100644 --- a/new_features_examples/multi_tool_usage_agent.py +++ b/new_features_examples/multi_tool_usage_agent.py @@ -111,8 +111,7 @@ class ExecutionContext: history: List[Dict[str, Any]] = field(default_factory=list) -hints = get_type_hints(func) - +hints = get_type_hints(func) # noqa: F821 class ToolAgent: def __init__(