We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fdfc71 commit 176cdf8Copy full SHA for 176cdf8
synapseclient/core/download/download_functions.py
@@ -572,7 +572,7 @@ def download_fn(
572
async def download_from_url_multi_threaded(
573
file_handle_id: Optional[str],
574
object_id: Optional[str],
575
- object_type: str,
+ object_type: Optional[str],
576
destination: str,
577
*,
578
expected_md5: str = None,
@@ -619,7 +619,7 @@ async def download_from_url_multi_threaded(
619
)
620
else:
621
request = DownloadRequest(
622
- path=temp_destination,
+ path=destination,
623
debug=client.debug,
624
presigned_url=presigned_url,
625
0 commit comments