From 04b1b8796e5227e320ce9d70f47dfc07c5981cdb 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: Mon, 25 May 2026 10:56:50 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B1=D1=80=D0=B0=D0=BB=20=D1=82=D0=BE?= =?UTF-8?q?=D1=87=D0=BA=D1=83=20=D0=B8=D0=B7=20=D0=B0=D0=BC=D0=BF=D0=BB?= =?UTF-8?q?=D1=83=D0=B0=20=D1=82=D1=80=D0=B5=D0=BD=D0=B5=D1=80=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parsers/parser_players.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/parser_players.py b/parsers/parser_players.py index 3f4073a..c860913 100644 --- a/parsers/parser_players.py +++ b/parsers/parser_players.py @@ -133,7 +133,7 @@ def parse_team(html: str) -> dict: "lastname": last_name, "player": f"{last_name} {first_name}".strip(), "born": born.get_text(strip=True).replace(",", "") if born else "", - "amplua": amplua.get_text(strip=True) if amplua else "", + "amplua": amplua.get_text(strip=True).replace(".", "") if amplua else "", } )