Remove type in InlineQueryResultGame.

This commit is contained in:
eternnoir 2016-11-01 01:14:28 +08:00
parent e342b9fa6b
commit 7a6bb4dcc8
1 changed files with 2 additions and 2 deletions

View File

@ -1471,8 +1471,8 @@ class InlineQueryResultCachedAudio(BaseInlineQueryResultCached):
# Games
class InlineQueryResultGame(JsonSerializable):
def __init__(self, type, id, game_short_name, reply_markup=None):
self.type = type
def __init__(self, id, game_short_name, reply_markup=None):
self.type = 'game'
self.id = id
self.game_short_name = game_short_name
self.reply_markup = reply_markup