|
43 | 43 | from .emoji import Emoji |
44 | 44 | from .parsemode import ParseMode |
45 | 45 | from .message import Message |
46 | | -from .inlinequery import InlineQuery |
47 | 46 | from .choseninlineresult import ChosenInlineResult |
48 | | -from .inlinequeryresult import InlineQueryResultArticle, InlineQueryResultGif,\ |
49 | | - InlineQueryResultMpeg4Gif, InlineQueryResultPhoto, InlineQueryResultVideo |
| 47 | +from .inlinequery import InlineQuery |
| 48 | +from .inlinequeryresult import InlineQueryResult |
| 49 | +from .inlinequeryresultarticle import InlineQueryResultArticle |
| 50 | +from .inlinequeryresultaudio import InlineQueryResultAudio |
| 51 | +from .inlinequeryresultcachedaudio import InlineQueryResultCachedAudio |
| 52 | +from .inlinequeryresultcacheddocument import InlineQueryResultCachedDocument |
| 53 | +from .inlinequeryresultcachedgif import InlineQueryResultCachedGif |
| 54 | +from .inlinequeryresultcachedmpeg4gif import InlineQueryResultCachedMpeg4Gif |
| 55 | +from .inlinequeryresultcachedphoto import InlineQueryResultCachedPhoto |
| 56 | +from .inlinequeryresultcachedsticker import InlineQueryResultCachedSticker |
| 57 | +from .inlinequeryresultcachedvideo import InlineQueryResultCachedVideo |
| 58 | +from .inlinequeryresultcachedvoice import InlineQueryResultCachedVoice |
| 59 | +from .inlinequeryresultcontact import InlineQueryResultContact |
| 60 | +from .inlinequeryresultdocument import InlineQueryResultDocument |
| 61 | +from .inlinequeryresultgif import InlineQueryResultGif |
| 62 | +from .inlinequeryresultlocation import InlineQueryResultLocation |
| 63 | +from .inlinequeryresultmpeg4gif import InlineQueryResultMpeg4Gif |
| 64 | +from .inlinequeryresultphoto import InlineQueryResultPhoto |
| 65 | +from .inlinequeryresultvenue import InlineQueryResultVenue |
| 66 | +from .inlinequeryresultvideo import InlineQueryResultVideo |
| 67 | +from .inlinequeryresultvoice import InlineQueryResultVoice |
50 | 68 | from .update import Update |
51 | 69 | from .bot import Bot |
52 | 70 |
|
@@ -91,6 +109,14 @@ def JobQueue(*args, **kwargs): |
91 | 109 | 'UserProfilePhotos', 'ChatAction', 'Location', 'Video', 'Document', |
92 | 110 | 'Sticker', 'File', 'PhotoSize', 'Update', 'ParseMode', 'Message', |
93 | 111 | 'User', 'TelegramObject', 'NullHandler', 'Voice', 'InlineQuery', |
94 | | - 'ReplyMarkup', 'ChosenInlineResult', 'InlineQueryResultArticle', |
95 | | - 'InlineQueryResultGif', 'InlineQueryResultPhoto', |
96 | | - 'InlineQueryResultMpeg4Gif', 'InlineQueryResultVideo') |
| 112 | + 'ReplyMarkup', 'ChosenInlineResult', 'InlineQueryResult', |
| 113 | + 'InlineQueryResult', 'InlineQueryResultArticle', |
| 114 | + 'InlineQueryResultAudio', 'InlineQueryResultCachedAudio', |
| 115 | + 'InlineQueryResultCachedDocument', 'InlineQueryResultCachedGif', |
| 116 | + 'InlineQueryResultCachedMpeg4Gif', 'InlineQueryResultCachedPhoto', |
| 117 | + 'InlineQueryResultCachedSticker', 'InlineQueryResultCachedVideo', |
| 118 | + 'InlineQueryResultCachedVoice', 'InlineQueryResultContact', |
| 119 | + 'InlineQueryResultDocument', 'InlineQueryResultGif', |
| 120 | + 'InlineQueryResultLocation', 'InlineQueryResultMpeg4Gif', |
| 121 | + 'InlineQueryResultPhoto', 'InlineQueryResultVenue', |
| 122 | + 'InlineQueryResultVideo', 'InlineQueryResultVoice') |
0 commit comments