mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-09 09:22:03 +00:00
Store some data in types.__all__
This commit is contained in:
parent
5019a4f00b
commit
e00bc027cf
1 changed files with 8 additions and 3 deletions
|
|
@ -1,8 +1,8 @@
|
|||
from .animation import Animation
|
||||
from .audio import Audio
|
||||
from .callback_query import CallbackQuery
|
||||
from .chat import Chat
|
||||
from .chat_member import ChatMember
|
||||
from .chat import Chat, ChatType, ChatActions
|
||||
from .chat_member import ChatMember, ChatMemberStatus
|
||||
from .chosen_inline_result import ChosenInlineResult
|
||||
from .contact import Contact
|
||||
from .document import Document
|
||||
|
|
@ -14,7 +14,7 @@ from .inline_keyboard import InlineKeyboardButton, InlineKeyboardMarkup
|
|||
from .inline_query import InlineQuery
|
||||
from .invoice import Invoice
|
||||
from .location import Location
|
||||
from .message import Message
|
||||
from .message import Message, ContentType, ParseMode
|
||||
from .message_entity import MessageEntity
|
||||
from .order_info import OrderInfo
|
||||
from .photo_size import PhotoSize
|
||||
|
|
@ -39,7 +39,10 @@ __all__ = [
|
|||
'Base',
|
||||
'CallbackQuery',
|
||||
'Chat',
|
||||
'ChatType',
|
||||
'ChatActions',
|
||||
'ChatMember',
|
||||
'ChatMemberStatus',
|
||||
'ChosenInlineResult',
|
||||
'Contact',
|
||||
'Document',
|
||||
|
|
@ -53,6 +56,8 @@ __all__ = [
|
|||
'Invoice',
|
||||
'Location',
|
||||
'Message',
|
||||
'ContentType',
|
||||
'ParseMode',
|
||||
'MessageEntity',
|
||||
'OrderInfo',
|
||||
'PhotoSize',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue