aiogram/aiogram/enums/__init__.py
Alex Root Junior 3d38577bb0
Cover tests
2022-11-23 20:35:35 +02:00

35 lines
1 KiB
Python

from .bot_command_scope_type import BotCommandScopeType
from .chat_action import ChatAction
from .chat_member_status import ChatMemberStatus
from .chat_type import ChatType
from .content_type import ContentType
from .dice_emoji import DiceEmoji
from .inline_query_result_type import InlineQueryResultType
from .input_media_type import InputMediaType
from .mask_position_point import MaskPositionPoint
from .menu_button_type import MenuButtonType
from .message_entity_type import MessageEntityType
from .parse_mode import ParseMode
from .poll_type import PollType
from .sticker_type import StickerType
from .topic_icon_color import TopicIconColor
from .update_type import UpdateType
__all__ = (
"BotCommandScopeType",
"ChatAction",
"ChatMemberStatus",
"ChatType",
"ContentType",
"DiceEmoji",
"InlineQueryResultType",
"InputMediaType",
"MaskPositionPoint",
"MenuButtonType",
"MessageEntityType",
"ParseMode",
"PollType",
"StickerType",
"TopicIconColor",
"UpdateType",
)