From a8d78f63baf1161dd39eae1e755eeb6e7a8b09bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Volf?= <66163112+matous-volf@users.noreply.github.com> Date: Tue, 10 Sep 2024 16:13:51 +0200 Subject: [PATCH] style: formatting --- src/models/task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/task.rs b/src/models/task.rs index a925b6e..98d6125 100644 --- a/src/models/task.rs +++ b/src/models/task.rs @@ -73,7 +73,7 @@ impl Ord for Task { .then(ReverseOrdOption::from( &self_time.as_ref().map(|calendar_time| calendar_time.time()) ).cmp(&ReverseOrdOption::from( - &other_time.as_ref().map(|calendar_time| calendar_time.time()) + &other_time.as_ref().map(|calendar_time| calendar_time.time()) ))) .then(ReverseOrdOption::from(&self.deadline()).cmp( &ReverseOrdOption::from(&other.deadline())