From b528ad44523492f80c28a9283345d99792a47896 Mon Sep 17 00:00:00 2001 From: Narthana Epa Date: Sat, 31 Aug 2024 17:18:13 +0530 Subject: [PATCH] Fix lints --- src/lib.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index d958b4c..bc15ca4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -182,6 +182,9 @@ where } /// Get the PIN using the walker binary +/// +/// # Errors +/// Errors pub fn walker_get_pin(_state: &State) -> std::result::Result { std::process::Command::new("walker") .arg("--password") @@ -200,6 +203,9 @@ pub fn walker_get_pin(_state: &State) -> std::result::Result(input: impl BufRead, output: &mut impl Write, get_pin: F) -> Result<()> where F: Fn(&State) -> std::result::Result + Copy,