Skip to content

Commit

Permalink
Merge branch 'master' of github.com:seung-lab/cloud-files
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Sep 6, 2023
2 parents cc0a0ea + 75ae21d commit bee46e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudfiles/interfaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ def get_file(self, file_path, start=None, end=None, part_size=None):
end = int(end - 1)

try:
content = blob.download_as_bytes(start=start, end=end, raw_download=True)
content = blob.download_as_bytes(start=start, end=end, raw_download=True, checksum=None)
except google.cloud.exceptions.NotFound as err:
return (None, None, None, None)

Expand Down

0 comments on commit bee46e6

Please sign in to comment.