diff options
author | 0w0 <[email protected]> | 2023-07-13 17:11:40 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-13 17:11:40 +0800 |
commit | cae8dfa08f870e463259521803426d2b3d169918 (patch) | |
tree | 2baba4d36ec9abd5af218caef3b6abf751b737b1 | |
parent | 9d5e369b66e21eb9d26ac97602c166fa1bbbb0e5 (diff) | |
parent | 8ebd9311c8b3cd9bbf36c1508cedf5586e026670 (diff) | |
download | ATRI-cae8dfa08f870e463259521803426d2b3d169918.tar.gz ATRI-cae8dfa08f870e463259521803426d2b3d169918.tar.bz2 ATRI-cae8dfa08f870e463259521803426d2b3d169918.zip |
🔀 Merge pull request #92 from mute23-code/main
Fix: 当 `WithGoCQHTTP` 为 `False` 时报错的问题
-rw-r--r-- | ATRI/configs/create.py | 2 | ||||
-rw-r--r-- | ATRI/configs/models.py | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | changelog.md | 2 |
4 files changed, 6 insertions, 6 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 @@ -23,7 +23,7 @@ - 使用 [go-cqhttp](https://go-cqhttp.org/) 作为默认协议端. - 遵循 [OneBot v11](https://onebot.dev/) 规范. - 易于上手的 [可视化界面](https://github.com/Kyomotoi/Project-ATRI-Console). -- Comming soon... +- Coming soon... ## 📱 功能概览 | Services Overview diff --git a/changelog.md b/changelog.md index f7680f2..2e9b039 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ > 此处仅为记录重大更新,修复 BUG/以及其它 请关注[`GitHub commits`](https://github.com/Kyomotoi/ATRI/commits/main) -## Comming soon... +## Coming soon... - Next: `YHN-001-A06` --- |