Skip to content

Commit be9fa74

Browse files
committed
docs(intro): remove stray wait from sync snippet
1 parent 2372519 commit be9fa74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/intro-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ from playwright.sync_api import sync_playwright
5858

5959
with sync_playwright() as p:
6060
browser = p.webkit.launch()
61-
page = await browser.new_page()
61+
page = browser.new_page()
6262
page.goto("http://whatsmyuseragent.org/")
6363
page.screenshot(path="example.png")
6464
browser.close()

0 commit comments

Comments
 (0)