From 67ff1b781f5ca73aa0b7d02f308b1b84c985a57d Mon Sep 17 00:00:00 2001 From: Ilya_Chis Date: Thu, 20 Mar 2025 17:20:12 +0500 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B0?= =?UTF-8?q?=20=D0=BF=D0=B0=D1=86=D0=B8=D0=B5=D0=BD=D1=82=D0=BE=D0=B2=20?= =?UTF-8?q?=D0=B2=20=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BotPM.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BotPM.py b/BotPM.py index 623e8e2..23f4654 100644 --- a/BotPM.py +++ b/BotPM.py @@ -616,7 +616,7 @@ def find_patients_by_id(telegram_id): records = sheet.get_all_records() # Получаем все строки таблицы patients = [] for record in records: - if str(record["Telegram ID"]) == str(telegram_id) and str(record["Верификация"]) == "Пройдена": + if str(record["Telegram ID"]) == str(telegram_id): patients.append(record) return patients