Skip to content

Commit

Permalink
fix: latchdir multipart bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kennyworkman committed May 8, 2022
1 parent cf99e4f commit 84e9c30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion latch/types/directory.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def to_python_value(
local_folder = ctx.file_access.get_random_local_directory()

def _downloader():
return ctx.file_access.get_data(uri, local_folder, is_multipart=False)
return ctx.file_access.get_data(uri, local_folder, is_multipart=True)

return LatchDir(local_folder, uri, downloader=_downloader)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="latch",
version="0.8.0",
version="0.8.1",
author_email="kenny@latch.bio",
description="latch sdk",
packages=find_packages(),
Expand Down

0 comments on commit 84e9c30

Please sign in to comment.