mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-13 10:26:53 +00:00
Apply isort (#1508)
This commit is contained in:
parent
69c359d23a
commit
0df95a0276
4 changed files with 5 additions and 5 deletions
|
|
@ -88,6 +88,7 @@ from ..methods import (
|
|||
LogOut,
|
||||
PinChatMessage,
|
||||
PromoteChatMember,
|
||||
RefundStarPayment,
|
||||
ReopenForumTopic,
|
||||
ReopenGeneralForumTopic,
|
||||
ReplaceStickerInSet,
|
||||
|
|
@ -145,7 +146,6 @@ from ..methods import (
|
|||
UnpinAllGeneralForumTopicMessages,
|
||||
UnpinChatMessage,
|
||||
UploadStickerFile,
|
||||
RefundStarPayment,
|
||||
)
|
||||
from ..types import (
|
||||
BotCommand,
|
||||
|
|
|
|||
|
|
@ -64,6 +64,7 @@ from .leave_chat import LeaveChat
|
|||
from .log_out import LogOut
|
||||
from .pin_chat_message import PinChatMessage
|
||||
from .promote_chat_member import PromoteChatMember
|
||||
from .refund_star_payment import RefundStarPayment
|
||||
from .reopen_forum_topic import ReopenForumTopic
|
||||
from .reopen_general_forum_topic import ReopenGeneralForumTopic
|
||||
from .replace_sticker_in_set import ReplaceStickerInSet
|
||||
|
|
@ -120,7 +121,6 @@ from .unpin_all_forum_topic_messages import UnpinAllForumTopicMessages
|
|||
from .unpin_all_general_forum_topic_messages import UnpinAllGeneralForumTopicMessages
|
||||
from .unpin_chat_message import UnpinChatMessage
|
||||
from .upload_sticker_file import UploadStickerFile
|
||||
from .refund_star_payment import RefundStarPayment
|
||||
|
||||
__all__ = (
|
||||
"AddStickerToSet",
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ from os import getenv
|
|||
from typing import Any, Dict, Union
|
||||
|
||||
from aiohttp import web
|
||||
from finite_state_machine import form_router
|
||||
|
||||
from aiogram import Bot, Dispatcher, F, Router
|
||||
from aiogram.client.session.aiohttp import AiohttpSession
|
||||
|
|
@ -19,6 +18,7 @@ from aiogram.webhook.aiohttp_server import (
|
|||
TokenBasedRequestHandler,
|
||||
setup_application,
|
||||
)
|
||||
from finite_state_machine import form_router
|
||||
|
||||
main_router = Router()
|
||||
|
||||
|
|
|
|||
|
|
@ -3,12 +3,14 @@ import pytest
|
|||
from aiogram.enums import MessageEntityType
|
||||
from aiogram.types import MessageEntity, User
|
||||
from aiogram.utils.formatting import (
|
||||
BlockQuote,
|
||||
Bold,
|
||||
BotCommand,
|
||||
CashTag,
|
||||
Code,
|
||||
CustomEmoji,
|
||||
Email,
|
||||
ExpandableBlockQuote,
|
||||
HashTag,
|
||||
Italic,
|
||||
PhoneNumber,
|
||||
|
|
@ -29,8 +31,6 @@ from aiogram.utils.formatting import (
|
|||
as_numbered_list,
|
||||
as_numbered_section,
|
||||
as_section,
|
||||
BlockQuote,
|
||||
ExpandableBlockQuote,
|
||||
)
|
||||
from aiogram.utils.text_decorations import html_decoration
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue