File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
services/api-server/src/simcore_service_api_server/services_rpc Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11from dataclasses import dataclass
22from functools import partial
33
4+ from models_library .api_schemas_rpc_async_jobs .async_jobs import AsyncJobGet
45from models_library .api_schemas_webserver .storage import PathToExport
56from models_library .products import ProductName
67from models_library .users import UserID
@@ -22,10 +23,11 @@ async def start_data_export(
2223 user_id : UserID ,
2324 product_name : ProductName ,
2425 paths_to_export : list [PathToExport ],
25- ):
26- return await start_export_data (
26+ ) -> AsyncJobGet :
27+ async_job_get , _ = await start_export_data (
2728 self ._rpc_client ,
2829 user_id = user_id ,
2930 product_name = product_name ,
3031 paths_to_export = paths_to_export ,
3132 )
33+ return async_job_get
You can’t perform that action at this time.
0 commit comments