From 2ff47f4bd71814d11ef8f4dd5a05879983b819e3 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 12:26:37 +0000 Subject: [PATCH] fix: remove trailing whitespace from docstring MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João --- src/crewai/crew.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/crewai/crew.py b/src/crewai/crew.py index 8b033b59a..1c86842aa 100644 --- a/src/crewai/crew.py +++ b/src/crewai/crew.py @@ -769,16 +769,16 @@ class Crew(FlowTrackable, BaseModel): def kickoff_stream(self, inputs: dict[str, Any] | None = None): """ Stream crew execution events in real-time. - + This method yields events as they occur during crew execution, making it easy to integrate with streaming frameworks like FastAPI's StreamingResponse. - + Args: inputs: Optional dictionary of inputs for the crew execution - + Yields: dict: Event dictionaries containing event type and data - + Example: ```python from fastapi import FastAPI