From 90f7e9b20b71aa6ace6ce12d8d4883e10ad3aad1 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 4 Mar 2026 13:52:20 -0500 Subject: [PATCH] ci: scripts + format --- scrapers/atcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapers/atcoder.py b/scrapers/atcoder.py index 31bf727..9b1a574 100644 --- a/scrapers/atcoder.py +++ b/scrapers/atcoder.py @@ -397,7 +397,7 @@ class AtcoderScraper(BaseScraper): page.wait_for_load_state("networkidle") page.fill('input[name="username"]', credentials.get("username", "")) page.fill('input[name="password"]', credentials.get("password", "")) - page.click('#submit') + page.click("#submit") page.wait_for_url(lambda url: "/login" not in url, timeout=30000) cookies = page.context.cookies()