style: Format upload.py for better readability

Signed-off-by: phernandez <paul@basicmachines.co>
This commit is contained in:
phernandez
2025-11-10 19:15:03 -06:00
parent 49b2adc35c
commit e0fc59ea97
@@ -90,7 +90,9 @@ async def upload_path(
for i, (file_path, relative_path) in enumerate(files_to_upload, 1):
# Skip archive files (zip, tar, gz, etc.)
if _is_archive_file(file_path):
print(f"Skipping archive file: {relative_path} ({i}/{len(files_to_upload)})")
print(
f"Skipping archive file: {relative_path} ({i}/{len(files_to_upload)})"
)
skipped_count += 1
continue