1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Fix typo in types.py

This commit is contained in:
coder2020official 2022-04-22 23:06:11 +05:00
parent b146df346d
commit 4812dcb02b

View File

@ -1189,7 +1189,7 @@ class InlineKeyboardButton(Dictionaryable, JsonSerializable, JsonDeserializable)
if self.callback_data:
json_dict['callback_data'] = self.callback_data
if self.web_app:
json_dict['web_url'] = self.web_app.to_dict()
json_dict['web_app'] = self.web_app.to_dict()
if self.switch_inline_query is not None:
json_dict['switch_inline_query'] = self.switch_inline_query
if self.switch_inline_query_current_chat is not None: