mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 12:51:18 +00:00
Remove unused game field from Message
This commit is contained in:
parent
c9462911cf
commit
11b7c3b52a
@ -83,9 +83,6 @@ class Message(Object):
|
||||
document (:obj:`Document <pyrogram.Document>`, *optional*):
|
||||
Message is a general file, information about the file.
|
||||
|
||||
game (:obj:`Game <pyrogram.Game>`, *optional*):
|
||||
Message is a game, information about the game. More about games.
|
||||
|
||||
photo (:obj:`Photo <pyrogram.Photo>`, *optional*):
|
||||
Message is a photo, information about the photo.
|
||||
|
||||
@ -225,7 +222,6 @@ class Message(Object):
|
||||
caption_entities: list = None,
|
||||
audio=None,
|
||||
document=None,
|
||||
game=None,
|
||||
photo=None,
|
||||
sticker=None,
|
||||
animation=None,
|
||||
@ -276,7 +272,6 @@ class Message(Object):
|
||||
self.caption_entities = caption_entities # flags.12?Vector<MessageEntity>
|
||||
self.audio = audio # flags.13?Audio
|
||||
self.document = document # flags.14?Document
|
||||
self.game = game # flags.15?Game
|
||||
self.photo = photo # flags.16?Vector<PhotoSize>
|
||||
self.sticker = sticker # flags.17?Sticker
|
||||
self.animation = animation
|
||||
|
Loading…
Reference in New Issue
Block a user