removed unused imports
This commit is contained in:
parent
d7fb635a74
commit
b1c32ff6f0
2 changed files with 2 additions and 8 deletions
|
@ -1,10 +1,6 @@
|
||||||
//! flags that require more complex rendering than just scaling colored stripes
|
//! flags that require more complex rendering than just scaling colored stripes
|
||||||
|
|
||||||
use termion::{
|
use termion::color::{ Bg, Rgb };
|
||||||
terminal_size,
|
|
||||||
|
|
||||||
color::{ Bg, Rgb }
|
|
||||||
};
|
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
color::*,
|
color::*,
|
||||||
|
|
|
@ -6,13 +6,11 @@ use std::io::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use termion::{
|
use termion::{
|
||||||
terminal_size,
|
|
||||||
|
|
||||||
clear,
|
clear,
|
||||||
color::{ Bg, Fg, Rgb },
|
color::{ Bg, Fg, Rgb },
|
||||||
cursor,
|
cursor,
|
||||||
input::TermRead,
|
input::TermRead,
|
||||||
raw::{ RawTerminal, IntoRawMode }
|
raw::IntoRawMode
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
|
|
Loading…
Reference in a new issue