🔊 add export deprecation warning (#983)

This commit is contained in:
Ju4tCode
2022-05-20 17:34:15 +08:00
committed by GitHub
parent 6d4c5cbc2d
commit 80594cffb6
2 changed files with 8 additions and 1 deletions

View File

@ -107,7 +107,7 @@ def load_from_toml(file_path: str, encoding: str = "utf-8") -> Set[Plugin]:
nonebot_data = data.get("nonebot", {}).get("plugins")
if nonebot_data:
warnings.warn(
"[nonebot.plugins] table are now deprecated. Use [tool.nonebot] instead.",
"[nonebot.plugins] table is deprecated. Use [tool.nonebot] instead.",
DeprecationWarning,
)
else: