Skip to content

Commit b9f0f9a

Browse files
Fix test error
1 parent 9e7f570 commit b9f0f9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

telebot/apihelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ def edit_message_checklist(
500500
method_url = r'editMessageChecklist'
501501
payload = {'chat_id': chat_id, 'message_id': message_id, 'checklist': checklist, 'business_connection_id': business_connection_id}
502502
if reply_markup is not None:
503-
payload['reply_markup'] = await _convert_markup(reply_markup)
503+
payload['reply_markup'] = _convert_markup(reply_markup)
504504
return _make_request(token, method_url, params=payload)
505505

506506

0 commit comments

Comments
 (0)