🎨 isort format code

This commit is contained in:
yanyongyu
2021-09-27 00:19:30 +08:00
parent cfdebb30b7
commit 92a411e3b4
16 changed files with 41 additions and 33 deletions

View File

@ -18,7 +18,8 @@
https://docs.python.org/3/library/typing.html
"""
from collections.abc import Callable as BaseCallable
from typing import Any, Dict, Union, TypeVar, Optional, Callable, NoReturn, Awaitable, TYPE_CHECKING
from typing import (TYPE_CHECKING, Any, Dict, Union, TypeVar, Callable,
NoReturn, Optional, Awaitable)
if TYPE_CHECKING:
from nonebot.matcher import Matcher