File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
services/api-server/src/simcore_service_api_server/api/routes Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -483,14 +483,12 @@ async def _run_single_function(function_inputs: FunctionInputs) -> FunctionJobID
483483 raise result
484484
485485 # At this point, all results are FunctionJobID since we've checked for exceptions
486- job_ids : list [FunctionJobID ] = results # type: ignore[assignment]
487-
488486 function_job_collection_description = f"Function job collection of map of function { to_run_function .uid } with { len (function_inputs_list )} inputs"
489487 return await web_api_rpc_client .register_function_job_collection (
490488 function_job_collection = FunctionJobCollection (
491489 title = "Function job collection of function map" ,
492490 description = function_job_collection_description ,
493- job_ids = job_ids ,
491+ job_ids = results , # type: ignore
494492 ),
495493 user_id = user_identity .user_id ,
496494 product_name = user_identity .product_name ,
You can’t perform that action at this time.
0 commit comments