From d7c26bd64b7385701bc3ff46419f86de19701523 Mon Sep 17 00:00:00 2001 From: Rushmore Mushambi Date: Fri, 30 Dec 2022 14:57:47 +0200 Subject: [PATCH] Fix Error import (#1560) --- lib/src/fnc/not.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {