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
This commit is contained in:
Daniel Mueller 2018-05-08 17:31:47 -07:00 committed by Josh Mcguigan
parent 047cbc0cab
commit b9881e122a
1 changed files with 0 additions and 1 deletions

View File

@ -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.