From c9c67613039b1c46383a8ea83fa1aee19a0f26c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AE=D1=80=D0=B8=D0=B9=20=D0=A7=D0=B5=D1=80=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE?= Date: Fri, 24 Apr 2026 17:27:08 +0300 Subject: [PATCH] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=818?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler.py b/scheduler.py index ada8dd0..c52aa0f 100644 --- a/scheduler.py +++ b/scheduler.py @@ -239,7 +239,7 @@ def fetch_match_live_data(match_id: int) -> dict: scores = soup.find("div", class_="score__container").find_all("div", class_="score__item") score1 = parse_score(scores[0].text) if len(scores) > 0 else None score2 = parse_score(scores[2].text) if len(scores) > 2 else None - return [{"status": "live", "home_score": score1, "away_score": score2}] + return {"status": "live", "home_score": score1, "away_score": score2} raise NotImplementedError("Implement fetch_match_live_data(match_id) by yourself")