fix: remove trailing whitespace from docstring

Co-Authored-By: João <joao@crewai.com>
This commit is contained in:
Devin AI
2025-10-20 12:26:37 +00:00
parent 0af7e04cde
commit 2ff47f4bd7

View File

@@ -769,16 +769,16 @@ class Crew(FlowTrackable, BaseModel):
def kickoff_stream(self, inputs: dict[str, Any] | None = None): def kickoff_stream(self, inputs: dict[str, Any] | None = None):
""" """
Stream crew execution events in real-time. Stream crew execution events in real-time.
This method yields events as they occur during crew execution, making it This method yields events as they occur during crew execution, making it
easy to integrate with streaming frameworks like FastAPI's StreamingResponse. easy to integrate with streaming frameworks like FastAPI's StreamingResponse.
Args: Args:
inputs: Optional dictionary of inputs for the crew execution inputs: Optional dictionary of inputs for the crew execution
Yields: Yields:
dict: Event dictionaries containing event type and data dict: Event dictionaries containing event type and data
Example: Example:
```python ```python
from fastapi import FastAPI from fastapi import FastAPI