diff --git a/lib/src/fnc/not.rs b/lib/src/fnc/not.rs index c2933983..9a100af9 100644 --- a/lib/src/fnc/not.rs +++ b/lib/src/fnc/not.rs @@ -1,5 +1,5 @@ +use crate::err::Error; use crate::sql::Value; -use crate::Error; /// Returns a boolean that is false if the input is truthy and true otherwise. pub fn not((val,): (Value,)) -> Result {