From 35b51c0694c87d13d5a2e40603390c5584673946 Mon Sep 17 00:00:00 2001 From: lucario <912156837@qq.com> Date: Thu, 2 Apr 2026 00:15:39 +0800 Subject: [PATCH] fix(cron): fix extra indent for deliver param --- nanobot/agent/tools/cron.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nanobot/agent/tools/cron.py b/nanobot/agent/tools/cron.py index 850ecdc49..5205d0d63 100644 --- a/nanobot/agent/tools/cron.py +++ b/nanobot/agent/tools/cron.py @@ -97,12 +97,12 @@ class CronTool(Tool): f"(e.g. '2026-02-12T10:30:00'). Naive values default to {self._default_timezone}." ), }, - "deliver": { - "type": "boolean", - "description": "Whether to deliver the execution result to the user channel (default true)", - "default": True - }, - "job_id": {"type": "string", "description": "Job ID (for remove)"}, + "deliver": { + "type": "boolean", + "description": "Whether to deliver the execution result to the user channel (default true)", + "default": True + }, + "job_id": {"type": "string", "description": "Job ID (for remove)"}, }, "required": ["action"], }