Merge pull request #184 from barrett-ruth/fix/codeforces-problem-url

fix(codeforces): correct problem url
This commit is contained in:
Barrett Ruth 2025-10-31 21:47:36 -04:00 committed by GitHub
commit 71a6aac826
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -202,7 +202,7 @@ class CodeforcesScraper(BaseScraper):
error="",
contest_id=cid,
problems=problems,
url=f"https://codeforces.com/contest/{contest_id}/%s",
url=f"https://codeforces.com/contest/{contest_id}/problem/%s",
)
return await self._safe_execute("metadata", impl, contest_id)