🎨 update typing support

This commit is contained in:
yanyongyu
2020-12-06 02:30:19 +08:00
parent 9ab7176eaf
commit 629eed08b6
26 changed files with 247 additions and 205 deletions

View File

@ -3,9 +3,10 @@ import json
import asyncio
import dataclasses
from functools import wraps, partial
from typing import Any, Optional, Callable, Awaitable
from nonebot.log import logger
from nonebot.typing import Any, Optional, Callable, Awaitable, overrides
from nonebot.typing import overrides
def escape_tag(s: str) -> str: