chore: update snafu to make clippy happy (#4507)

* chore: update snafu to make clippy happy

* fix ci
This commit is contained in:
LFC
2024-08-08 00:12:00 +08:00
committed by GitHub
parent aa3f53f08a
commit a75cfaa516
7 changed files with 102 additions and 66 deletions

View File

@@ -22,7 +22,7 @@ use datatypes::vectors::{Helper, VectorRef};
use pyo3::exceptions::{PyRuntimeError, PyValueError};
use pyo3::types::{PyBool, PyDict, PyFloat, PyInt, PyList, PyModule, PyString, PyTuple};
use pyo3::{pymethods, IntoPy, PyAny, PyCell, PyObject, PyResult, Python, ToPyObject};
use snafu::{ensure, Location, ResultExt};
use snafu::{ensure, ResultExt};
use crate::engine::EvalContext;
use crate::python::error::{self, NewRecordBatchSnafu, OtherSnafu, Result};