🎨 sort imports in feishu adapter

This commit is contained in:
StarHeartHunt
2021-07-23 14:46:55 +08:00
parent cf747f954c
commit 8a6c26440c
5 changed files with 21 additions and 18 deletions

View File

@ -1,10 +1,11 @@
import json
import itertools
import json
from dataclasses import dataclass
from typing import Any, Dict, List, Optional, Tuple, Type, Union, Mapping, Iterable
from typing import (Any, Dict, Iterable, List, Mapping, Optional, Tuple, Type,
Union)
from nonebot.adapters import Message as BaseMessage, MessageSegment as BaseMessageSegment
from nonebot.adapters import Message as BaseMessage
from nonebot.adapters import MessageSegment as BaseMessageSegment
from nonebot.typing import overrides