Skip to content

Commit

Permalink
Ignore mypy error
Browse files Browse the repository at this point in the history
  • Loading branch information
Taliik committed Oct 9, 2024
1 parent 9c86cbe commit a3ca51f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion croud/clusters/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ def _download_exported_file(
path.parent.mkdir(parents=True, exist_ok=True)

desc = "(Unknown total file size)" if file_size == 0 else ""
r.raw.read = functools.partial(r.raw.read, decode_content=True)
r.raw.read = functools.partial(r.raw.read, decode_content=True) # type: ignore # noqa
with tqdm.wrapattr(r.raw, "read", total=file_size, desc=desc) as r_raw:
with path.open("wb") as f:
copyfileobj(r_raw, f)
Expand Down
Empty file added my_table.csv
Empty file.

0 comments on commit a3ca51f

Please sign in to comment.