From 5e61a2896691016ac36ec07356165adbb281fbf1 Mon Sep 17 00:00:00 2001 From: Robert Kruszewski Date: Thu, 23 May 2024 16:50:20 +0100 Subject: [PATCH] format --- vortex-ipc/src/writer.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/vortex-ipc/src/writer.rs b/vortex-ipc/src/writer.rs index 545f395e27..4670106fb3 100644 --- a/vortex-ipc/src/writer.rs +++ b/vortex-ipc/src/writer.rs @@ -1,8 +1,7 @@ use futures_util::{Stream, TryStreamExt}; - -use vortex::{Array, IntoArrayData, ViewContext}; use vortex::array::chunked::ChunkedArray; use vortex::stream::ArrayStream; +use vortex::{Array, IntoArrayData, ViewContext}; use vortex_buffer::Buffer; use vortex_dtype::DType; use vortex_error::{vortex_bail, VortexResult}; @@ -68,8 +67,8 @@ impl ArrayWriter { } async fn write_array_chunks(&mut self, mut stream: S) -> VortexResult - where - S: Stream> + Unpin, + where + S: Stream> + Unpin, { let mut byte_offsets = vec![self.msgs.tell()]; let mut row_offsets = vec![0];