Skip to content

Commit 3d0ed54

Browse files
committed
removed numbering
1 parent c8608af commit 3d0ed54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

download_wheels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ def download_file(
6262
url = file_info['url']
6363
dest = download_dir / fname
6464

65-
# 1) if file exists, check its SHA256
65+
# if file exists, check its SHA256
6666
if dest.exists() and expected_sha:
6767
if sha256_of(dest).lower() == expected_sha.lower():
6868
progress.update(task_id, advance=1)
6969
return
7070
else:
7171
dest.unlink() # bad checksum, force re-download
7272

73-
# 2) otherwise stream-download with a per-file progress bar
73+
# otherwise stream-download with a per-file progress bar
7474
r = requests.get(url, stream=True)
7575
r.raise_for_status()
7676
total = int(r.headers.get('Content-Length', 0))

0 commit comments

Comments
 (0)