From c6170d29f324677653e776a6a19d28e657dfc976 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Thu, 12 Oct 2023 15:48:20 +0100 Subject: [PATCH] Clippy --- arrow-json/src/reader/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-json/src/reader/mod.rs b/arrow-json/src/reader/mod.rs index fe8cf257bbaf..2b86c578e5f7 100644 --- a/arrow-json/src/reader/mod.rs +++ b/arrow-json/src/reader/mod.rs @@ -146,7 +146,7 @@ use arrow_array::{ downcast_integer, make_array, RecordBatch, RecordBatchReader, StructArray, }; use arrow_data::ArrayData; -use arrow_schema::{ArrowError, DataType, Field, FieldRef, Schema, SchemaRef, TimeUnit}; +use arrow_schema::{ArrowError, DataType, FieldRef, Schema, SchemaRef, TimeUnit}; pub use schema::*; use crate::reader::boolean_array::BooleanArrayDecoder;