diff --git a/src/value/ops.rs b/src/value/ops.rs index 094360b..c33d023 100644 --- a/src/value/ops.rs +++ b/src/value/ops.rs @@ -246,7 +246,6 @@ impl Div for Value { fn div(self, other: Self) -> Self::Output { let precedence = Op::Div.precedence(); - dbg!(&self, &other); Ok(match self { Self::Null => todo!(), Self::Dimension(num, unit) => match other {