fix import

This commit is contained in:
yanyongyu
2020-04-22 13:55:33 +08:00
parent e9fb50eb1b
commit 4794a4bacb
9 changed files with 61 additions and 43 deletions

View File

@ -1,7 +1,8 @@
import re
from typing import List
from nonebot.message import Message
from aiocqhttp.message import Message
from nonebot.typing import Message_T

View File

@ -1,8 +1,8 @@
import re
from typing import Callable, Any
from nonebot.command.argfilter import ValidateError
from nonebot.typing import Filter_T
from nonebot.command.argfilter import ValidateError
class BaseValidator: