Skip to content

Commit e0fc59e

Browse files
committed
style: Format upload.py for better readability
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent 49b2adc commit e0fc59e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/basic_memory/cli/commands/cloud/upload.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ async def upload_path(
9090
for i, (file_path, relative_path) in enumerate(files_to_upload, 1):
9191
# Skip archive files (zip, tar, gz, etc.)
9292
if _is_archive_file(file_path):
93-
print(f"Skipping archive file: {relative_path} ({i}/{len(files_to_upload)})")
93+
print(
94+
f"Skipping archive file: {relative_path} ({i}/{len(files_to_upload)})"
95+
)
9496
skipped_count += 1
9597
continue
9698

0 commit comments

Comments
 (0)