From a867809cb8fa2a29def03e986baa927f195c8388 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Tue, 2 Dec 2025 17:35:57 -0700 Subject: [PATCH] use to shush warn --- pttodoest/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pttodoest/src/main.rs b/pttodoest/src/main.rs index 65c753e..ac58b1d 100755 --- a/pttodoest/src/main.rs +++ b/pttodoest/src/main.rs @@ -203,7 +203,7 @@ impl File { if !after.contains(before) { self.append(Delta::remove_at(before.clone(), now))?; let now = Delta::now_time(); - if let Some(due) = before.next_due(now.clone()) { + if let due = before.must_next_due(now.clone()) { if due >= now { self.append(Delta::add_at(before.clone(), due))?; }