Fix Error import (#1560)

This commit is contained in:
Rushmore Mushambi 2022-12-30 14:57:47 +02:00 committed by GitHub
parent 54f337c15b
commit d7c26bd64b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
use crate::err::Error;
use crate::sql::Value; use crate::sql::Value;
use crate::Error;
/// Returns a boolean that is false if the input is truthy and true otherwise. /// Returns a boolean that is false if the input is truthy and true otherwise.
pub fn not((val,): (Value,)) -> Result<Value, Error> { pub fn not((val,): (Value,)) -> Result<Value, Error> {