Skip to content

Commit 4cbc8d9

Browse files
committed
cargo fmt
Signed-off-by: Daniel King <[email protected]>
1 parent e3818c6 commit 4cbc8d9

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

vortex-python/src/arrays/into_array.rs

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1-
use crate::PyVortex;
2-
use crate::arrays::py::PyPythonArray;
3-
use crate::arrays::{PyArrayRef, native::PyNativeArray};
4-
use crate::arrow::FromPyArrow;
51
use arrow_array::ffi_stream::ArrowArrayStreamReader;
62
use arrow_array::{RecordBatchReader as _, make_array};
73
use arrow_data::ArrayData;
8-
use pyo3::{Bound, FromPyObject, PyAny, PyResult, exceptions::PyTypeError, types::PyAnyMethods};
4+
use pyo3::exceptions::PyTypeError;
5+
use pyo3::types::PyAnyMethods;
6+
use pyo3::{Bound, FromPyObject, PyAny, PyResult};
7+
use vortex::ArrayRef;
8+
use vortex::arrow::FromArrowArray as _;
99
use vortex::dtype::DType;
1010
use vortex::dtype::arrow::FromArrowType as _;
1111
use vortex::error::VortexResult;
1212
use vortex::iter::{ArrayIteratorAdapter, ArrayIteratorExt};
13-
use vortex::{ArrayRef, arrow::FromArrowArray as _};
13+
14+
use crate::PyVortex;
15+
use crate::arrays::PyArrayRef;
16+
use crate::arrays::native::PyNativeArray;
17+
use crate::arrays::py::PyPythonArray;
18+
use crate::arrow::FromPyArrow;
1419

1520
/// Conversion type for converting Python objects into a [`vortex::Array`].
1621
pub struct PyIntoArray(PyArrayRef);

0 commit comments

Comments
 (0)