We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d175aa0 commit 7d2863fCopy full SHA for 7d2863f
src/notebooklm/cli/session.py
@@ -192,11 +192,10 @@ def login(storage, browser):
192
try:
193
from playwright.sync_api import sync_playwright
194
except ImportError:
195
- install_hint = (
196
- " pip install notebooklm[browser]"
197
- if browser == "msedge"
198
- else " pip install notebooklm[browser]\n playwright install chromium"
199
- )
+ if browser == "msedge":
+ install_hint = " pip install notebooklm[browser]"
+ else:
+ install_hint = " pip install notebooklm[browser]\n playwright install chromium"
200
console.print(f"[red]Playwright not installed. Run:[/red]\n{install_hint}")
201
raise SystemExit(1) from None
202
0 commit comments