From 728d951b87ae9ba15ca1453d24ce9ce618badd5a Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Fri, 16 Aug 2024 05:18:39 -0400 Subject: repo: apply rustfmt --- src/commands/today/tomorrow.rs | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'src/commands/today/tomorrow.rs') diff --git a/src/commands/today/tomorrow.rs b/src/commands/today/tomorrow.rs index ad5c37d..a483541 100644 --- a/src/commands/today/tomorrow.rs +++ b/src/commands/today/tomorrow.rs @@ -1,13 +1,9 @@ use super::prelude::*; pub fn tomorrow(_date: chrono::NaiveDateTime) -> TodayIter { - Box::new( - once( - TodayArgs { - url: "https://www.youtube.com/watch?v=W78AGkm_AtE", - start: None, - end: Some(Duration::seconds(6)) - } - ) - ) + Box::new(once(TodayArgs { + url: "https://www.youtube.com/watch?v=W78AGkm_AtE", + start: None, + end: Some(Duration::seconds(6)), + })) } -- cgit v1.3.1