From d2a5256ca3271c0e5ec230f0c6bea6cfe6d6d334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moura?= Date: Sun, 1 Mar 2026 15:21:08 -0300 Subject: [PATCH] Potential fix for pull request finding 'Unused local variable' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- lib/crewai/tests/agents/test_lite_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/crewai/tests/agents/test_lite_agent.py b/lib/crewai/tests/agents/test_lite_agent.py index b795b0653..7525e60de 100644 --- a/lib/crewai/tests/agents/test_lite_agent.py +++ b/lib/crewai/tests/agents/test_lite_agent.py @@ -1439,7 +1439,7 @@ def test_lite_agent_native_parallel_tool_calls_with_after_llm_hook(): ) agent._after_llm_call_hooks.append(after_hook) - result = agent.kickoff("What is 2+3 and 4+5?") + agent.kickoff("What is 2+3 and 4+5?") assert hook_called["count"] >= 1 assert len(agent.tools_results) == 2