From 246ee2da5397c6d80b455c980d80b8644a06dbd8 Mon Sep 17 00:00:00 2001 From: Mikael Mello Date: Thu, 4 Jan 2024 02:54:26 -0800 Subject: [PATCH] Remove debug key print --- inquire/src/prompts/test.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/inquire/src/prompts/test.rs b/inquire/src/prompts/test.rs index 17d48eae..0a1050de 100644 --- a/inquire/src/prompts/test.rs +++ b/inquire/src/prompts/test.rs @@ -9,7 +9,6 @@ where { fn read_key(&mut self) -> crate::error::InquireResult { let key = self.next(); - println!("key: {:?}", key); match key { Some(key) => Ok(key),