From 5e4a8ca987da636632e94f524faad96e99d75261 Mon Sep 17 00:00:00 2001 From: Eduardo Chiarotti Date: Thu, 10 Apr 2025 15:17:30 -0300 Subject: [PATCH] feat: run lint --- src/crewai/tools/tool_usage.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/crewai/tools/tool_usage.py b/src/crewai/tools/tool_usage.py index 2ab3793e4..889a8c272 100644 --- a/src/crewai/tools/tool_usage.py +++ b/src/crewai/tools/tool_usage.py @@ -2,7 +2,6 @@ import ast import datetime import json import time - from difflib import SequenceMatcher from json import JSONDecodeError from textwrap import dedent @@ -23,10 +22,10 @@ from crewai.utilities.agent_utils import ( ) from crewai.utilities.events.crewai_event_bus import crewai_event_bus from crewai.utilities.events.tool_usage_events import ( - ToolUsageStartedEvent, ToolSelectionErrorEvent, ToolUsageErrorEvent, ToolUsageFinishedEvent, + ToolUsageStartedEvent, ToolValidateInputErrorEvent, )