From 93da12c2a6ac9a8fbcdbaae4a567f37a1706fa1b Mon Sep 17 00:00:00 2001 From: Yelizaveta Date: Sat, 5 Aug 2023 16:15:07 +0300 Subject: [PATCH] change mode added --- bot.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/bot.py b/bot.py index 8c36744..412e649 100644 --- a/bot.py +++ b/bot.py @@ -90,7 +90,6 @@ def button(update: Update, context: CallbackContext) -> str: user = init_user(update.effective_user) set_last_usage(user) - last_message = query.message.text if query.data.startswith('s_'): # User entered schedule text = f'Ты выбрал {VALUES[query.data]} в качестве времени для рассылки. Спасибо!' @@ -107,10 +106,7 @@ def button(update: Update, context: CallbackContext) -> str: push_user_focus(update.effective_user, query.data, update.effective_message.date) return engine_callback(update, context) - elif query.data.startswith('r_') and ( - last_message == 'Привет! Пришло время подводить итоги. Давай?' - or "Продолжить прохождение опроса?" - ): + elif query.data.startswith('r_'): if query.data == 'r_yes': return engine_callback(update, context) if query.data == 'r_1h': @@ -139,6 +135,8 @@ def button(update: Update, context: CallbackContext) -> str: schedule.is_on = True schedule.save() + return '' + def text_processing(update: Update, context: CallbackContext): if update.message.text == VALUES['menu_share_event']: