Skip to content

Commit 6963956

Browse files
fix BaseConfig class (#485)
1 parent 013a64e commit 6963956

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/ELF_RSS2/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
from typing import List, Optional
33

44
from nonebot import get_driver
5-
from nonebot.config import BaseConfig
5+
from nonebot.config import Config
66
from nonebot.log import logger
77
from pydantic import AnyHttpUrl
88

99
DATA_PATH = Path.cwd() / "data"
1010
JSON_PATH = DATA_PATH / "rss.json"
1111

1212

13-
class ELFConfig(BaseConfig):
13+
class ELFConfig(Config):
1414
class Config:
1515
extra = "allow"
1616

0 commit comments

Comments
 (0)