Skip to content

Commit c7da3bd

Browse files
committed
fix lint
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent 8a84bfd commit c7da3bd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
from basic_memory.cli.commands.cloud.api_client import CloudAPIError, make_api_request
1515
from basic_memory.cli.commands.cloud.rclone_config import (
1616
add_tenant_to_rclone_config,
17-
get_default_mount_path,
1817
)
1918
from basic_memory.cli.commands.cloud.rclone_installer import RcloneInstallError, install_rclone
2019
from basic_memory.config import ConfigManager
@@ -396,7 +395,7 @@ def setup_cloud_bisync(sync_dir: Optional[str] = None) -> None:
396395
config = config_manager.load_config()
397396
config.bisync_config["sync_dir"] = sync_dir
398397
config_manager.save_config(config)
399-
console.print(f"[green]✓ Saved custom sync directory to config[/green]")
398+
console.print("[green]✓ Saved custom sync directory to config[/green]")
400399

401400
# Get bisync directory (from config or default)
402401
local_path = get_bisync_directory()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def status() -> None:
382382
headers = {}
383383

384384
try:
385-
console.print(f"\n[blue]Checking cloud instance health...[/blue]")
385+
console.print("\n[blue]Checking cloud instance health...[/blue]")
386386

387387
# Make API request to check health
388388
response = asyncio.run(

0 commit comments

Comments
 (0)