aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/tomorrow.rs
diff options
context:
space:
mode:
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)),
+ }))
}