diff options
Diffstat (limited to 'ATRI')
| -rw-r--r-- | ATRI/configs/create.py | 2 | ||||
| -rw-r--r-- | ATRI/configs/models.py | 6 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/ATRI/configs/create.py b/ATRI/configs/create.py index 1eff69b..278ef8f 100644 --- a/ATRI/configs/create.py +++ b/ATRI/configs/create.py @@ -101,7 +101,7 @@ def init_config(conf_path: Path, default_conf_path: Path):        format(uin=str(uin), password=password, protocol=str(protocol)))  # type: ignore      else:          raw_conf = raw_conf.replace("{is_use_with_gocq}", "false") -        raw_conf = raw_conf.replace("{account}", "[]") +        raw_conf = raw_conf.replace("{accounts}", "[]")      raw_conf = raw_conf.replace("{saucenao_key}", saucenao_key) diff --git a/ATRI/configs/models.py b/ATRI/configs/models.py index b3b29c9..f024828 100644 --- a/ATRI/configs/models.py +++ b/ATRI/configs/models.py @@ -1,4 +1,4 @@ -from typing import List +from typing import List, Optional  from pydantic import BaseModel @@ -24,7 +24,7 @@ class GoCQHTTPAccountList(BaseModel):  class WithGoCQHTTP(BaseModel):      enabled: bool -    accounts: List[GoCQHTTPAccountList] +    accounts: Optional[List[GoCQHTTPAccountList]]      download_domain: str      download_version: str      gocq_webui_username: str @@ -64,7 +64,7 @@ class RuntimeConfig(BaseModel):      command_start: set      command_sep: set      session_expire_timeout: int -    gocq_accounts: list +    gocq_accounts: Optional[list]      gocq_download_domain: str      gocq_version: str      gocq_webui_username: str | 
