Fix 1 type error in pipeline

This commit is contained in:
Brandon Hancock
2024-07-29 15:54:49 -04:00
parent 75c7aaf585
commit 03eafe1671

View File

@@ -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(