From b9881e122a414f83a3f724aee132d35ec0583222 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Tue, 8 May 2018 17:31:47 -0700 Subject: [PATCH] Remove unused import of std::ascii::AsciiExt (#142) The import of std::ascii::AsciiExt in src/event.rs is unused. Remove it. > warning: unused import: `std::ascii::AsciiExt` > --> src/event.rs:4:5 > | > 4 | use std::ascii::AsciiExt; > | ^^^^^^^^^^^^^^^^^^^^ > | > = note: #[warn(unused_imports)] on by default --- src/event.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/event.rs b/src/event.rs index f79cb4c..6e383a1 100644 --- a/src/event.rs +++ b/src/event.rs @@ -1,7 +1,6 @@ //! Mouse and key events. use std::io::{Error, ErrorKind}; -use std::ascii::AsciiExt; use std::str; /// An event reported by the terminal.