mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
Fix 1 type error in pipeline
This commit is contained in:
@@ -121,7 +121,7 @@ class Pipeline(BaseModel):
|
|||||||
Returns:
|
Returns:
|
||||||
List[PipelineRunResult]: List of results from each run.
|
List[PipelineRunResult]: List of results from each run.
|
||||||
"""
|
"""
|
||||||
pipeline_results = []
|
pipeline_results: List[PipelineRunResult] = []
|
||||||
|
|
||||||
# Process all runs in parallel
|
# Process all runs in parallel
|
||||||
all_run_results = await asyncio.gather(
|
all_run_results = await asyncio.gather(
|
||||||
|
|||||||
Reference in New Issue
Block a user