|
23 | 23 | from .base import TelegramObject |
24 | 24 | from .user import User |
25 | 25 | from .chat import Chat |
| 26 | +from .chatmember import ChatMember |
26 | 27 | from .photosize import PhotoSize |
27 | 28 | from .audio import Audio |
28 | 29 | from .voice import Voice |
|
82 | 83 |
|
83 | 84 | __author__ = 'devs@python-telegram-bot.org' |
84 | 85 | __version__ = '4.1.2' |
85 | | -__all__ = ['Audio', 'Bot', 'Chat', 'ChatAction', 'ChosenInlineResult', 'CallbackQuery', 'Contact', |
86 | | - 'Document', 'Emoji', 'File', 'ForceReply', 'InlineKeyboardButton', |
87 | | - 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', 'InlineQueryResult', |
88 | | - 'InlineQueryResultArticle', 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio', |
89 | | - 'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif', |
90 | | - 'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto', |
91 | | - 'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo', |
92 | | - 'InlineQueryResultCachedVoice', 'InlineQueryResultContact', 'InlineQueryResultDocument', |
93 | | - 'InlineQueryResultGif', 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', |
94 | | - 'InlineQueryResultPhoto', 'InlineQueryResultVenue', 'InlineQueryResultVideo', |
95 | | - 'InlineQueryResultVoice', 'InputContactMessageContent', 'InputFile', |
96 | | - 'InputLocationMessageContent', 'InputMessageContent', 'InputTextMessageContent', |
97 | | - 'InputVenueMessageContent', 'KeyboardButton', 'Location', 'Message', 'MessageEntity', |
98 | | - 'NullHandler', 'ParseMode', 'PhotoSize', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', |
99 | | - 'ReplyMarkup', 'Sticker', 'TelegramError', 'TelegramObject', 'Update', 'User', |
100 | | - 'UserProfilePhotos', 'Venue', 'Video', 'Voice'] |
| 86 | +__all__ = ['Audio', 'Bot', 'Chat', 'ChatMember', 'ChatAction', 'ChosenInlineResult', |
| 87 | + 'CallbackQuery', 'Contact', 'Document', 'Emoji', 'File', 'ForceReply', |
| 88 | + 'InlineKeyboardButton', 'InlineKeyboardMarkup', 'InlineQuery', 'InlineQueryResult', |
| 89 | + 'InlineQueryResult', 'InlineQueryResultArticle', 'InlineQueryResultAudio', |
| 90 | + 'InlineQueryResultCachedAudio', 'InlineQueryResultCachedDocument', |
| 91 | + 'InlineQueryResultCachedGif', 'InlineQueryResultCachedMpeg4Gif', |
| 92 | + 'InlineQueryResultCachedPhoto', 'InlineQueryResultCachedSticker', |
| 93 | + 'InlineQueryResultCachedVideo', 'InlineQueryResultCachedVoice', |
| 94 | + 'InlineQueryResultContact', 'InlineQueryResultDocument', 'InlineQueryResultGif', |
| 95 | + 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', 'InlineQueryResultPhoto', |
| 96 | + 'InlineQueryResultVenue', 'InlineQueryResultVideo', 'InlineQueryResultVoice', |
| 97 | + 'InputContactMessageContent', 'InputFile', 'InputLocationMessageContent', |
| 98 | + 'InputMessageContent', 'InputTextMessageContent', 'InputVenueMessageContent', |
| 99 | + 'KeyboardButton', 'Location', 'Message', 'MessageEntity', 'NullHandler', 'ParseMode', |
| 100 | + 'PhotoSize', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', 'ReplyMarkup', 'Sticker', |
| 101 | + 'TelegramError', 'TelegramObject', 'Update', 'User', 'UserProfilePhotos', 'Venue', |
| 102 | + 'Video', 'Voice'] |
101 | 103 |
|
102 | 104 | if version_info < (2, 7): |
103 | 105 | from warnings import warn |
|
0 commit comments