summaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
authorHendrik Sollich <hendrik@hoodie.de>2018-04-11 00:32:39 +0200
committerHendrik Sollich <hendrik@hoodie.de>2018-04-17 19:55:30 +0200
commitdeb86bd457d3199cea03fb6d2579126b35ab9b75 (patch)
treee8ece0be5e38b5fca3471b29d160b975d65d6f64 /src/cell.rs
parent34d9492bbb4a66f52df48734bd112e4bddc2ae6d (diff)
Reexporting types used from the term crate
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 9ab9c59..255c3fd 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -3,7 +3,7 @@
use std::io::{Write, Error};
use std::string::ToString;
use unicode_width::UnicodeWidthStr;
-use term::{Attr, Terminal, color};
+use super::{Attr, Terminal, color};
use super::format::Alignment;
use super::utils::print_align;