Skip to content

Commit 2d7645b

Browse files
committed
Fix CLI output format
1 parent 6771da9 commit 2d7645b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/parlant/bin/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1856,7 +1856,7 @@ def remove_customer_extra(ctx: click.Context, customer_id: str, key: str) -> Non
18561856
def add_customer_tag(ctx: click.Context, customer_id: str, tag_id: str) -> None:
18571857
try:
18581858
Actions.add_customer_tag(ctx, customer_id, tag_id)
1859-
Interface._write_success(f"Added tag '{tag_id}' to customer {customer_id}")
1859+
Interface._write_success(f"Added tag (id={tag_id}) to customer {customer_id}'")
18601860
except Exception as e:
18611861
Interface.write_error(f"Error: {type(e).__name__}: {e}")
18621862
set_exit_status(1)
@@ -1865,7 +1865,7 @@ def add_customer_tag(ctx: click.Context, customer_id: str, tag_id: str) -> None:
18651865
def remove_customer_tag(ctx: click.Context, customer_id: str, tag_id: str) -> None:
18661866
try:
18671867
Actions.remove_customer_tag(ctx, customer_id, tag_id)
1868-
Interface._write_success(f"Removed tag '{tag_id}' from customer {customer_id}")
1868+
Interface._write_success(f"Removed tag (id={tag_id}) from customer {customer_id}")
18691869
except Exception as e:
18701870
Interface.write_error(f"Error: {type(e).__name__}: {e}")
18711871
set_exit_status(1)

0 commit comments

Comments
 (0)