Commit 135e5a5 1 parent 210e3c8 commit 135e5a5 Copy full SHA for 135e5a5
File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ async def choice_option_of_reserve(
98
98
update .effective_chat .id ,
99
99
context .user_data ['message' ])
100
100
event_id = update .effective_message .text
101
+ message = await update .effective_chat .send_message ('Загружаю данные' )
101
102
102
103
user = context .user_data ['user' ]
103
104
reserve_admin_hl_logger .info (": " .join (
@@ -111,6 +112,7 @@ async def choice_option_of_reserve(
111
112
112
113
event_info , name_column = load_show_info (int (event_id ))
113
114
list_of_tickets = context .bot_data ['list_of_tickets' ]
115
+ await message .edit_text ('Данные загружены' )
114
116
115
117
text = ''
116
118
keyboard = []
@@ -137,8 +139,8 @@ async def choice_option_of_reserve(
137
139
keyboard .append (add_btn_back_and_cancel (postfix_for_cancel = 'res' ,
138
140
postfix_for_back = 1 ))
139
141
reply_markup = InlineKeyboardMarkup (keyboard )
140
- await update . effective_chat . send_message (text = text ,
141
- reply_markup = reply_markup )
142
+ await message . edit_text (text = text ,
143
+ reply_markup = reply_markup )
142
144
143
145
option , text_emoji = await get_emoji_and_options_for_event (event_info ,
144
146
name_column )
You can’t perform that action at this time.
0 commit comments