Skip to content

Commit 356bd3c

Browse files
committed
fixes
1 parent 6bca85f commit 356bd3c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

services/api-server/src/simcore_service_api_server/api/routes/functions_routes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)