From 2e3cb5b20e1eba863ea05b8e35eb377e9030378b Mon Sep 17 00:00:00 2001 From: archlinux Date: Wed, 1 Apr 2026 23:25:11 +0800 Subject: [PATCH] fix default value True --- nanobot/agent/tools/cron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/agent/tools/cron.py b/nanobot/agent/tools/cron.py index 89b403b71..a78ab89b4 100644 --- a/nanobot/agent/tools/cron.py +++ b/nanobot/agent/tools/cron.py @@ -101,7 +101,7 @@ class CronTool(Tool): "deliver": { "type": "boolean", "description": "Whether to deliver the execution result to the user channel (default true)", - "default": true + "default": True }, }, "required": ["action"],