From 23cb396e6548cfcc2eac79f064b8e53331800ac3 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Sat, 8 Aug 2026 23:52:33 -0400 Subject: [PATCH] fix(recurrence): drop the now-unused child binding The spawn's explicit embed call went with #280 step 3; the create_note result had no other reader. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01UaYUaouG9jjhATyuxCKrQs --- src/scribe/services/recurrence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scribe/services/recurrence.py b/src/scribe/services/recurrence.py index 39b7858..5fed9c7 100644 --- a/src/scribe/services/recurrence.py +++ b/src/scribe/services/recurrence.py @@ -125,7 +125,7 @@ async def spawn_recurring_tasks() -> int: base_date = task.due_date or now.date() next_due = calculate_next_due(task.recurrence_rule, base_date) try: - child = await create_note( + await create_note( task.user_id, title=task.title, body=task.body or "",