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:
parent
047cbc0cab
commit
b9881e122a
|
@ -1,7 +1,6 @@
|
||||||
//! Mouse and key events.
|
//! Mouse and key events.
|
||||||
|
|
||||||
use std::io::{Error, ErrorKind};
|
use std::io::{Error, ErrorKind};
|
||||||
use std::ascii::AsciiExt;
|
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
||||||
/// An event reported by the terminal.
|
/// An event reported by the terminal.
|
||||||
|
|
Loading…
Reference in New Issue