Skip to content

Commit 077bd65

Browse files
committed
fix(cli): address review feedback on error formatting
1 parent 6dcfba9 commit 077bd65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooklm/cli/source.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _build_id_ambiguity_error(source_id: str, matches) -> click.ClickException:
7373
lines.append(f" {item.id[:12]}... {title}")
7474
if len(matches) > 5:
7575
lines.append(f" ... and {len(matches) - 5} more")
76-
lines.append("\nSpecify more characters to narrow down.")
76+
lines.append("Specify more characters to narrow down.")
7777
return click.ClickException("\n".join(lines))
7878

7979

0 commit comments

Comments
 (0)