change typing manage

This commit is contained in:
yanyongyu
2020-08-07 17:05:08 +08:00
parent 950dbb1115
commit f2b6f08599
12 changed files with 20 additions and 13 deletions

View File

@ -4,11 +4,10 @@
import os
import re
import importlib
from types import ModuleType
from typing import Set, Dict, Type, Optional
from nonebot.log import logger
from nonebot.matcher import Matcher
from nonebot.typing import Set, Dict, Type, Optional, ModuleType
from nonebot.rule import Rule, metaevent, message, notice, request
plugins: Dict[str, "Plugin"] = {}