From 82e8d571ada494bce0d853be3813244edffd234f Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Fri, 9 Jan 2026 16:34:26 -0500 Subject: [PATCH] Fix clippy --- arrow-pyarrow/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-pyarrow/src/lib.rs b/arrow-pyarrow/src/lib.rs index e2b365070913..15951f8dcfbf 100644 --- a/arrow-pyarrow/src/lib.rs +++ b/arrow-pyarrow/src/lib.rs @@ -633,7 +633,7 @@ impl FromPyObject<'_, '_> for PyArrowType { type Error = PyErr; fn extract(value: Borrowed<'_, '_, PyAny>) -> PyResult { - Ok(Self(T::from_pyarrow_bound(&*value)?)) + Ok(Self(T::from_pyarrow_bound(&value)?)) } }