Skip to content

Commit 134fbfb

Browse files
committed
minor cleanup
1 parent 1726889 commit 134fbfb

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

services/api-server/openapi.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7731,9 +7731,6 @@
77317731
{
77327732
"type": "string",
77337733
"pattern": "^null$"
7734-
},
7735-
{
7736-
"type": "null"
77377734
}
77387735
],
77397736
"title": "X-Simcore-Parent-Project-Uuid"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ async def map_function( # noqa: PLR0913
576576
product_name: Annotated[str, Depends(get_product_name)],
577577
solver_service: Annotated[SolverService, Depends(get_solver_service)],
578578
job_service: Annotated[JobService, Depends(get_job_service)],
579-
x_simcore_parent_project_uuid: Annotated[ProjectID | NullString | None, Header()],
579+
x_simcore_parent_project_uuid: Annotated[ProjectID | NullString, Header()],
580580
x_simcore_parent_node_id: Annotated[NodeID | NullString, Header()],
581581
) -> RegisteredFunctionJobCollection:
582582
function_jobs = []

0 commit comments

Comments
 (0)