diff --git a/utils/passes_api.py b/utils/passes_api.py index 023e335..8e5d5da 100644 --- a/utils/passes_api.py +++ b/utils/passes_api.py @@ -235,7 +235,7 @@ async def _login_with_browser(email: str, password: str) -> StaticResponse: page = await browser.new_page() async with page.expect_response( - re.compile("https://www.google.com/recaptcha/enterprise/anchor") + re.compile(r"https://www\.google\.com/recaptcha/enterprise/anchor") ) as response_info: await page.goto("https://www.passes.com/login") await page.get_by_test_id("email").fill(email)