Skip to content

Commit 0a0d705

Browse files
add nullable field
1 parent 6879782 commit 0a0d705

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/director-v2/src/simcore_service_director_v2/models/dynamic_services_scheduler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,11 +476,11 @@ def get_proxy_endpoint(self) -> AnyHttpUrl:
476476
] = None
477477

478478
product_api_base_url: Annotated[
479-
AnyHttpUrl,
479+
AnyHttpUrl | None,
480480
Field(
481-
description="Base URL for the current product's API",
481+
description="Base URL for the current product's API.",
482482
),
483-
]
483+
] = None
484484

485485
@classmethod
486486
def from_http_request(

0 commit comments

Comments
 (0)