From 56f8ad5297d24c590579b415c463d0f295470fed Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 2 Aug 2025 16:13:15 +0000 Subject: [PATCH] fix: remove unused import in examples file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove unused event_stream_manager import from examples/human_input_event_streaming.py - Resolves final lint issue preventing CI from passing Co-Authored-By: João --- examples/human_input_event_streaming.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/human_input_event_streaming.py b/examples/human_input_event_streaming.py index 6974f9d4f..691a46dc2 100644 --- a/examples/human_input_event_streaming.py +++ b/examples/human_input_event_streaming.py @@ -18,7 +18,6 @@ try: import websockets import httpx from crewai.server.human_input_server import HumanInputServer - from crewai.server.event_stream_manager import event_stream_manager DEPENDENCIES_AVAILABLE = True except ImportError: DEPENDENCIES_AVAILABLE = False