diff --git a/maud/src/lib.rs b/maud/src/lib.rs
index 57641c2..41bc699 100644
--- a/maud/src/lib.rs
+++ b/maud/src/lib.rs
@@ -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)
     }
 }