Return literal unit in StyleSheet::Display

This commit is contained in:
ConnorSkees 2020-02-16 18:26:35 -05:00
parent 26b0f2c998
commit af5c945dfa

View File

@ -237,8 +237,8 @@ enum Expr {
impl Display for StyleSheet {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
// todo!(implement into fmt::Result for SassResult)
Ok(PrettyPrinter::new(f).pretty_print(self).unwrap())
PrettyPrinter::new(f).pretty_print(self).unwrap();
Ok(())
}
}