File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
services/director/src/simcore_service_director Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -749,7 +749,7 @@ async def _get_dependant_repos(
749749
750750
751751async def _find_service_tag (
752- list_of_images : dict , service_key : str , service_tag : str
752+ list_of_images : dict , service_key : str , service_tag : str | None
753753) -> str :
754754 if service_key not in list_of_images :
755755 raise exceptions .ServiceNotAvailableError (
@@ -772,6 +772,7 @@ async def _find_service_tag(
772772 )
773773
774774 log .debug ("Service tag found is %s " , service_tag )
775+ assert tag is not None # nosec
775776 return tag
776777
777778
@@ -949,7 +950,7 @@ async def start_service(
949950 user_id : str ,
950951 project_id : str ,
951952 service_key : str ,
952- service_tag : str ,
953+ service_tag : str | None ,
953954 node_uuid : str ,
954955 node_base_path : str ,
955956 request_simcore_user_agent : str ,
You can’t perform that action at this time.
0 commit comments