Remove unused import

This commit is contained in:
Chris Wong 2016-05-14 18:42:30 +12:00
parent 2578c9aefc
commit bd82da1824

View file

@ -40,7 +40,6 @@ pub struct PreEscaped<T>(pub T);
impl<T: fmt::Display> Render for PreEscaped<T> {
fn render(&self, w: &mut fmt::Write) -> fmt::Result {
use std::fmt::Write;
write!(w, "{}", self.0)
}
}