diff options
author | Lint Action <[email protected]> | 2022-10-17 15:47:39 +0000 |
---|---|---|
committer | Lint Action <[email protected]> | 2022-10-17 15:47:39 +0000 |
commit | ea93851e3d51ef6ac3c40e8990bdad733728581f (patch) | |
tree | 01fa8ef97a4c5caab198f59cfb91bad6b5681111 /ATRI/plugins/help | |
parent | a8afa113cfef80237031916e20df44bc11df2270 (diff) | |
download | ATRI-ea93851e3d51ef6ac3c40e8990bdad733728581f.tar.gz ATRI-ea93851e3d51ef6ac3c40e8990bdad733728581f.tar.bz2 ATRI-ea93851e3d51ef6ac3c40e8990bdad733728581f.zip |
:rotating_light: 自动进行代码格式化
Diffstat (limited to 'ATRI/plugins/help')
-rw-r--r-- | ATRI/plugins/help/data_source.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ATRI/plugins/help/data_source.py b/ATRI/plugins/help/data_source.py index 6261a05..676cf7a 100644 --- a/ATRI/plugins/help/data_source.py +++ b/ATRI/plugins/help/data_source.py @@ -74,7 +74,12 @@ class Helper: headers=["服务名称", "开启状态(全局)", "仅支持管理员"], tablefmt="plain", ) - return MessageBuilder("咱搭载了以下服务~").text(table).text("@bot 帮助 [服务] -以查看对应服务帮助").done() + return ( + MessageBuilder("咱搭载了以下服务~") + .text(table) + .text("@bot 帮助 [服务] -以查看对应服务帮助") + .done() + ) @staticmethod def service_info(service: str) -> str: |