修改说明

This commit is contained in:
2026-08-26 16:18:47 +08:00
parent 59fd483487
commit 2986e966d3
2 changed files with 3 additions and 2 deletions

View File

@@ -45,5 +45,6 @@ python .\main.py feishu-chat
## 配置说明 ## 配置说明
```bash ```bash
config.py 配置文件中有 FEISHU_GROUPS = [] #配置飞书群名 config.py 配置文件中有 FEISHU_GROUPS = [] #配置飞书群名
FEISHU_DESKTOP_PATH = r"C:\Users\songy\AppData\Local\Feishu\app\Feishu.exe" #配置飞书安装位置
``` ```

View File

@@ -38,7 +38,7 @@ def run_task(task_name: str, *args):
log.error("未知任务: %s", task_name) log.error("未知任务: %s", task_name)
list_tasks() list_tasks()
for task in TASKS: for task in TASKS:
task["func"](*args) task["func"]()
log.info("===== 开始执行任务: %s =====", task_name) log.info("===== 开始执行任务: %s =====", task_name)
try: try: