From f1fc22cb06a6dde29af758a048d55a59bf85f6a4 Mon Sep 17 00:00:00 2001 From: Yariv Menachem Date: Thu, 2 Jan 2025 17:35:07 +0200 Subject: [PATCH] small fix --- src/telegram_handler/telegram_start_handler.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/telegram_handler/telegram_start_handler.py b/src/telegram_handler/telegram_start_handler.py index 8af02c3..8ab6b8c 100644 --- a/src/telegram_handler/telegram_start_handler.py +++ b/src/telegram_handler/telegram_start_handler.py @@ -117,10 +117,6 @@ class TelegramStartHandler(TelegramHandler): async def filters_flow(self, update: Update, context: ContextTypes.DEFAULT_TYPE) -> int: """Stores the location and asks for some info about the user.""" - user = update.message.from_user - self.logger.info( - "Filters of %s: %f / %f", user.first_name, update.message.text - ) self.filters = update.message.text.split(",") reply_markup = ReplyKeyboardMarkup([[KeyboardButton("Yes"), KeyboardButton("No")]], one_time_keyboard=True, input_field_placeholder=Flow.VERIFY_FILTERS.name)