Skip to content

Commit 46d8cf7

Browse files
committed
PEP8
1 parent ed8d0ce commit 46d8cf7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/qfieldcloud_sdk/sdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def download_files(
514514

515515
sha256_hash = hashlib.sha256()
516516
with open(local_filename, 'rb') as f:
517-
for byte_block in iter(lambda: f.read(4096),b""):
517+
for byte_block in iter(lambda: f.read(4096), b""):
518518
sha256_hash.update(byte_block)
519519

520520
if file['sha256'] == sha256_hash.hexdigest():

0 commit comments

Comments
 (0)