Skip to content

Commit dc93067

Browse files
committed
PEP8
1 parent 5336f2d commit dc93067

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

src/qfieldcloud_sdk/sdk.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -580,9 +580,13 @@ def download_file(
580580
chunk = f.read(8192)
581581
if file_hash.hexdigest() == remote_md5sum:
582582
if show_progress:
583-
print(f"{remote_filename}: Already present locally. Download skipped.")
583+
print(
584+
f"{remote_filename}: Already present locally. Download skipped."
585+
)
584586
else:
585-
logging.info(f'Skipping downloading file "{remote_filename}" because it is already present locally')
587+
logging.info(
588+
f'Skipping downloading file "{remote_filename}" because it is already present locally'
589+
)
586590
return
587591

588592
if download_type == FileTransferType.PROJECT:

0 commit comments

Comments
 (0)