mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 01:54:53 +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 .animation import Animation
|
||||||
from .audio import Audio
|
from .audio import Audio
|
||||||
from .callback_query import CallbackQuery
|
from .callback_query import CallbackQuery
|
||||||
from .chat import Chat
|
from .chat import Chat, ChatType, ChatActions
|
||||||
from .chat_member import ChatMember
|
from .chat_member import ChatMember, ChatMemberStatus
|
||||||
from .chosen_inline_result import ChosenInlineResult
|
from .chosen_inline_result import ChosenInlineResult
|
||||||
from .contact import Contact
|
from .contact import Contact
|
||||||
from .document import Document
|
from .document import Document
|
||||||
|
|
@ -14,7 +14,7 @@ from .inline_keyboard import InlineKeyboardButton, InlineKeyboardMarkup
|
||||||
from .inline_query import InlineQuery
|
from .inline_query import InlineQuery
|
||||||
from .invoice import Invoice
|
from .invoice import Invoice
|
||||||
from .location import Location
|
from .location import Location
|
||||||
from .message import Message
|
from .message import Message, ContentType, ParseMode
|
||||||
from .message_entity import MessageEntity
|
from .message_entity import MessageEntity
|
||||||
from .order_info import OrderInfo
|
from .order_info import OrderInfo
|
||||||
from .photo_size import PhotoSize
|
from .photo_size import PhotoSize
|
||||||
|
|
@ -39,7 +39,10 @@ __all__ = [
|
||||||
'Base',
|
'Base',
|
||||||
'CallbackQuery',
|
'CallbackQuery',
|
||||||
'Chat',
|
'Chat',
|
||||||
|
'ChatType',
|
||||||
|
'ChatActions',
|
||||||
'ChatMember',
|
'ChatMember',
|
||||||
|
'ChatMemberStatus',
|
||||||
'ChosenInlineResult',
|
'ChosenInlineResult',
|
||||||
'Contact',
|
'Contact',
|
||||||
'Document',
|
'Document',
|
||||||
|
|
@ -53,6 +56,8 @@ __all__ = [
|
||||||
'Invoice',
|
'Invoice',
|
||||||
'Location',
|
'Location',
|
||||||
'Message',
|
'Message',
|
||||||
|
'ContentType',
|
||||||
|
'ParseMode',
|
||||||
'MessageEntity',
|
'MessageEntity',
|
||||||
'OrderInfo',
|
'OrderInfo',
|
||||||
'PhotoSize',
|
'PhotoSize',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue