aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/tomorrow.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-08-16 05:18:39 -0400
committerNathan Perry <np@nathanperry.dev>2024-08-16 05:18:39 -0400
commit728d951b87ae9ba15ca1453d24ce9ce618badd5a (patch)
tree55f77c3d9c3fe0f7d659161fa85c729981cee27b /src/commands/today/tomorrow.rs
parent7d47be4c40ac8f9a9c33ae8c78e44d20c2c46ef6 (diff)
repo: apply rustfmt
Diffstat (limited to 'src/commands/today/tomorrow.rs')
-rw-r--r--src/commands/today/tomorrow.rs14
1 files changed, 5 insertions, 9 deletions
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)),
+ }))
}