From bca64ea971ec30d31b4da621b42606e1e87bbe65 Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 31 Oct 2022 16:28:51 +0300 Subject: [PATCH] text fix --- helpers/answer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helpers/answer.py b/helpers/answer.py index 14184f6..946e88e 100644 --- a/helpers/answer.py +++ b/helpers/answer.py @@ -238,7 +238,7 @@ class Answer(BaseAnswer): elif text == "Не уведомлять": bot.send_message( user.chat_id, - "Принято! Я не уведомлять тебя.", + "Принято! Я не буду уведомлять тебя.", reply_markup=main_keyboard() ) mongo.users_collection.update_one( @@ -275,7 +275,7 @@ class Answer(BaseAnswer): if user.notify_minutes is not None: text = f"Принято! Буду уведомлять тебя за {text}." else: - text = f"Принято! Я не уведомлять тебя." + text = f"Принято! Я не буду уведомлять тебя." bot.send_message(user.chat_id, text, reply_markup=main_keyboard()) self.set_state(user, "ready")