From 810a9923f9aa3db03fecb4ff62854aa9a2fcc36b Mon Sep 17 00:00:00 2001 From: Yanxin Lu Date: Tue, 24 Mar 2026 21:58:52 -0700 Subject: [PATCH] calendar: drop unnecessary --no-interactive flag from todo edit todoman skips interactive mode automatically when changes are provided. --- skills/calendar/scripts/cal_tool.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/skills/calendar/scripts/cal_tool.py b/skills/calendar/scripts/cal_tool.py index 00d6bd5..0235761 100644 --- a/skills/calendar/scripts/cal_tool.py +++ b/skills/calendar/scripts/cal_tool.py @@ -645,8 +645,7 @@ def cmd_todo_edit(args): print("Nothing to change. Specify at least one of --due, --priority.") return - # Run todoman edit (non-interactive) - _run_todoman("edit", str(todo_id), "--no-interactive", *todo_args) + _run_todoman("edit", str(todo_id), *todo_args) print(f"Updated todo: {matched.get('summary')}") for c in changes: print(f" {c}")