Skip to content
Snippets Groups Projects

pre-commit updates

Merged Erwan Rouchet requested to merge pre-commit-updates into master
2 files
+ 4
4
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 1
1
@@ -244,7 +244,7 @@ class Job(Model):
downloaded, last_percent = 0, 0
with open(destination, "wb") as f:
# Save the file in 1MB chunks
for chunk in resp.iter_content(chunk_size=1024 ** 2):
for chunk in resp.iter_content(chunk_size=1024**2):
f.write(chunk)
downloaded += len(chunk)
Loading