Skip to content

Commit

Permalink
Update py_base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelotrevisani authored Feb 29, 2024
1 parent e248132 commit 798949d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grayskull/strategy/py_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ def download_sdist_pkg(sdist_url: str, dest: str, name: Optional[str] = None):
with manage_progressbar(max_value=total_size, prefix=f"{name} ") as bar, open(
dest, "wb"
) as pkg_file:
# fmt: on
# fmt: on
progress_val = 0
chunk_size = 512
for chunk_data in response.iter_content(chunk_size=chunk_size):
Expand Down

0 comments on commit 798949d

Please sign in to comment.