about summary refs log tree commit diff stats
path: root/crates/yt/src/yt_dlp
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-24 16:28:30 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-24 16:30:21 +0200
commitac99460ed65126d32160ac12641f211d9162db91 (patch)
tree76b588fb34240ca44960451f2f39015c904e4f4d /crates/yt/src/yt_dlp
parentfix(crates/yt/config): Avoid module name re-use in `watch` config (diff)
downloadyt-ac99460ed65126d32160ac12641f211d9162db91.zip
fix(crates/yt): Correct imports
Diffstat (limited to 'crates/yt/src/yt_dlp')
-rw-r--r--crates/yt/src/yt_dlp/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/yt/src/yt_dlp/mod.rs b/crates/yt/src/yt_dlp/mod.rs
index 307ecdc..0415247 100644
--- a/crates/yt/src/yt_dlp/mod.rs
+++ b/crates/yt/src/yt_dlp/mod.rs
@@ -1,4 +1,4 @@
-use std::{str::FromStr, time::Duration};
+use std::{borrow::ToOwned, str::FromStr, time::Duration};
 
 use anyhow::{Context, Result};
 use chrono::{DateTime, Utc};