mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
move bar.done out of the loop because obviously
This commit is contained in:
parent
8f1a2d564a
commit
ff0d3754fa
1 changed files with 2 additions and 2 deletions
4
tasks.py
4
tasks.py
|
|
@ -82,8 +82,8 @@ def download_artifacts(session):
|
|||
for data in response.iter_content(chunk_size=8192):
|
||||
content.write(data)
|
||||
bar.show(content.tell())
|
||||
if bar.expected_size == content.tell():
|
||||
bar.done()
|
||||
assert bar.expected_size == content.tell()
|
||||
bar.done()
|
||||
out_path = os.path.join(
|
||||
os.path.dirname(__file__),
|
||||
"dist",
|
||||
|
|
|
|||
Loading…
Reference in a new issue