diff --git a/pyrogram/client/types/messages_and_media/message.py b/pyrogram/client/types/messages_and_media/message.py index ac8721e8..e86e4300 100644 --- a/pyrogram/client/types/messages_and_media/message.py +++ b/pyrogram/client/types/messages_and_media/message.py @@ -83,9 +83,6 @@ class Message(Object): document (:obj:`Document `, *optional*): Message is a general file, information about the file. - game (:obj:`Game `, *optional*): - Message is a game, information about the game. More about games. - photo (:obj:`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 self.audio = audio # flags.13?Audio self.document = document # flags.14?Document - self.game = game # flags.15?Game self.photo = photo # flags.16?Vector self.sticker = sticker # flags.17?Sticker self.animation = animation