From 9ccf4b6b56b89ceb9834ec839ce315bee88a5cc9 Mon Sep 17 00:00:00 2001 From: phernandez Date: Tue, 14 Oct 2025 00:38:02 -0500 Subject: [PATCH] remove extra conole out from sync message after upload Signed-off-by: phernandez --- src/basic_memory/cli/commands/cloud/upload_command.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/basic_memory/cli/commands/cloud/upload_command.py b/src/basic_memory/cli/commands/cloud/upload_command.py index 3de07207..d88f5ab5 100644 --- a/src/basic_memory/cli/commands/cloud/upload_command.py +++ b/src/basic_memory/cli/commands/cloud/upload_command.py @@ -86,7 +86,6 @@ def upload( console.print(f"[blue]Syncing project '{project}'...[/blue]") try: await sync_project(project) - console.print("[green]✓ Project synced[/green]") except Exception as e: console.print(f"[yellow]Warning: Sync failed: {e}[/yellow]") console.print("[dim]Files uploaded but may not be indexed yet[/dim]")