From 91c6278641c63497431c3a9b65e2183ba698d5d2 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: Wed, 5 Nov 2025 18:18:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20Na?= =?UTF-8?q?me1GFX,=20Name2GFX?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- get_data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/get_data.py b/get_data.py index a086a3b..ad91cdc 100644 --- a/get_data.py +++ b/get_data.py @@ -1620,6 +1620,8 @@ async def team(who: str): and item.get("lastName") is not None else "Команда" ), + "Name1GFX": (item.get('firstName') or '').strip(), + "Name2GFX": (item.get('lastName') or '').strip(), "captain": item.get("isCapitan", False), "age": item.get("age") or 0, "height": f"{item.get('height')} cm" if item.get("height") else 0,