We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 367d2bd commit 8cb4a71Copy full SHA for 8cb4a71
src/together/filemanager.py
@@ -213,7 +213,8 @@ def download(
213
if not fetch_metadata:
214
file_size = int(response.headers.get("content-length", 0))
215
216
- assert file_size != 0, "Unable to retrieve remote file."
+ # TODO: We are commenting this out while we figure out why we get file_size == 0.
217
+ # assert file_size != 0, "Unable to retrieve remote file."
218
219
with tqdm(
220
total=file_size,
0 commit comments