Chore: Fix new(er) Clippy lints

This commit is contained in:
Kyle Simpson
2022-11-20 17:59:28 +00:00
parent 646190eaf8
commit 662debd414
7 changed files with 13 additions and 14 deletions

View File

@@ -60,7 +60,7 @@ impl YoutubeDl {
let ytdl_args = ["-j", &self.url, "-f", "ba[abr>0][vcodec=none]/best"];
let mut output = Command::new(self.program)
.args(&ytdl_args)
.args(ytdl_args)
.output()
.await
.map_err(|e| AudioStreamError::Fail(Box::new(e)))?;