Skip to content

Commit 172ea8c

Browse files
committed
simplify commands, remove webdav tests
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent 083b302 commit 172ea8c

3 files changed

Lines changed: 4 additions & 716 deletions

File tree

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -616,9 +616,7 @@ async def notify_container_sync(tenant_id: str) -> None:
616616
# Non-critical, log and continue
617617
console.print(f"[yellow] ⚠ Sync failed for {project_name}: {e}[/yellow]")
618618

619-
console.print(
620-
"[dim]Note: Cloud indexing has started and may take a few moments[/dim]"
621-
)
619+
console.print("[dim]Note: Cloud indexing has started and may take a few moments[/dim]")
622620

623621
except Exception as e:
624622
# Non-critical, don't fail the bisync

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ def logout():
7272
console.print("[dim]All CLI commands now work locally[/dim]")
7373

7474

75-
76-
7775
@cloud_app.command("status")
7876
def status(
7977
bisync: bool = typer.Option(
@@ -206,8 +204,6 @@ def unmount() -> None:
206204
# Bisync commands
207205

208206

209-
210-
211207
@cloud_app.command("bisync")
212208
def bisync(
213209
profile: str = typer.Option(
@@ -246,7 +242,9 @@ def bisync_status() -> None:
246242
247243
DEPRECATED: Use 'bm cloud status' instead (bisync is now the default).
248244
"""
249-
console.print("[yellow]Note: 'bisync-status' is deprecated. Use 'bm cloud status' instead.[/yellow]")
245+
console.print(
246+
"[yellow]Note: 'bisync-status' is deprecated. Use 'bm cloud status' instead.[/yellow]"
247+
)
250248
console.print("[dim]Showing bisync status...[/dim]\n")
251249
show_bisync_status()
252250

0 commit comments

Comments
 (0)