|
19 | 19 | """A library that provides a Python interface to the Telegram Bot API""" |
20 | 20 |
|
21 | 21 | __author__ = 'leandrotoledodesouza@gmail.com' |
22 | | -__version__ = '2.8.1' |
| 22 | +__version__ = '2.8.2' |
23 | 23 |
|
24 | 24 | from .base import TelegramObject |
25 | 25 | from .user import User |
|
46 | 46 | from .message import Message |
47 | 47 | from .update import Update |
48 | 48 | from .bot import Bot |
49 | | -from .command_handler import * |
50 | 49 |
|
51 | 50 | __all__ = ['Bot', 'Emoji', 'TelegramError', 'InputFile', 'ReplyMarkup', |
52 | 51 | 'ForceReply', 'ReplyKeyboardHide', 'ReplyKeyboardMarkup', |
53 | 52 | 'UserProfilePhotos', 'ChatAction', 'Location', 'Contact', |
54 | 53 | 'Video', 'Sticker', 'Document', 'Audio', 'PhotoSize', 'GroupChat', |
55 | | - 'Update', 'ParseMode', 'Message', 'User', 'TelegramObject', 'NullHandler', |
56 | | - 'Voice', 'CommandHandler', 'CommandHandlerWithHelp', |
57 | | - 'CommandHandlerWithFatherCommand', 'CommandHandlerWithHelpAndFather'] |
| 54 | + 'Update', 'ParseMode', 'Message', 'User', 'TelegramObject', |
| 55 | + 'NullHandler', 'Voice'] |
0 commit comments