From 6c7dffa41b6eca2c8aac641c469f2f754c218548 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 12 Oct 2020 23:35:45 -0400 Subject: clippy --- src/pinentry.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/pinentry.rs') diff --git a/src/pinentry.rs b/src/pinentry.rs index b03c94e..a4627c2 100644 --- a/src/pinentry.rs +++ b/src/pinentry.rs @@ -9,14 +9,13 @@ pub async fn getpin( tty: Option<&str>, ) -> Result { let mut opts = tokio::process::Command::new("pinentry"); - let opts = opts - .stdin(std::process::Stdio::piped()) + opts.stdin(std::process::Stdio::piped()) .stdout(std::process::Stdio::piped()); - let opts = if let Some(tty) = tty { - opts.args(&["-T", tty, "-o", "0"]) + if let Some(tty) = tty { + opts.args(&["-T", tty, "-o", "0"]); } else { - opts.args(&["-o", "0"]) - }; + opts.args(&["-o", "0"]); + } let mut child = opts.spawn().context(crate::error::Spawn)?; // unwrap is safe because we specified stdin as piped in the command opts // above -- cgit v1.2.3-54-g00ecf