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