fix(Rodin3D-Gen2): missing "task_uuid" parameter (#10128)

This commit is contained in:
Alexander Piskun 2025-09-30 20:21:47 +03:00 committed by GitHub
parent f48d7230de
commit 631b9ae861
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -540,7 +540,7 @@ class Rodin3D_Gen2(Rodin3DAPI):
**kwargs)
await self.poll_for_task_status(subscription_key, **kwargs)
download_list = await self.get_rodin_download_list(task_uuid, **kwargs)
model = await self.download_files(download_list)
model = await self.download_files(download_list, task_uuid)
return (model,)