fix(cron): fix extra indent for deliver param

This commit is contained in:
lucario 2026-04-02 00:15:39 +08:00 committed by Xubin Ren
parent 5f2157baeb
commit 35b51c0694

View File

@ -97,12 +97,12 @@ class CronTool(Tool):
f"(e.g. '2026-02-12T10:30:00'). Naive values default to {self._default_timezone}." f"(e.g. '2026-02-12T10:30:00'). Naive values default to {self._default_timezone}."
), ),
}, },
"deliver": { "deliver": {
"type": "boolean", "type": "boolean",
"description": "Whether to deliver the execution result to the user channel (default true)", "description": "Whether to deliver the execution result to the user channel (default true)",
"default": True "default": True
}, },
"job_id": {"type": "string", "description": "Job ID (for remove)"}, "job_id": {"type": "string", "description": "Job ID (for remove)"},
}, },
"required": ["action"], "required": ["action"],
} }