We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8d0ce commit 46d8cf7Copy full SHA for 46d8cf7
1 file changed
src/qfieldcloud_sdk/sdk.py
@@ -514,7 +514,7 @@ def download_files(
514
515
sha256_hash = hashlib.sha256()
516
with open(local_filename, 'rb') as f:
517
- for byte_block in iter(lambda: f.read(4096),b""):
+ for byte_block in iter(lambda: f.read(4096), b""):
518
sha256_hash.update(byte_block)
519
520
if file['sha256'] == sha256_hash.hexdigest():
0 commit comments