From 53c6cd0944a77ce8f7877e5c708612b8c1503e9f Mon Sep 17 00:00:00 2001 From: Linus E <75929322+Rripped@users.noreply.github.com> Date: Sun, 8 May 2022 10:32:21 +0200 Subject: [PATCH] small correction --- telegram_bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telegram_bot/bot.py b/telegram_bot/bot.py index 957da84..a870d75 100644 --- a/telegram_bot/bot.py +++ b/telegram_bot/bot.py @@ -466,7 +466,7 @@ def set_new_transaction(message): :rtype: none """ user_id = int(message.from_user.id) - bot.send_message(chat_id=user_id, text='Type ",,," (time of transaction will be set to now, negative amount is selling, positive is buying):') + bot.send_message(chat_id=user_id, text='Type ",,," (time of transaction will be set to now, negative amount is selling, positive is buying):') bot.register_next_step_handler(message, set_new_transaction_step) def set_new_transaction_step(message):