From bb47bb9f5d44c198de6769f6e15d8597a914d56d Mon Sep 17 00:00:00 2001 From: Jay Chia Date: Mon, 7 Aug 2023 17:47:50 -0700 Subject: [PATCH] Lints --- src/daft-core/src/schema.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/daft-core/src/schema.rs b/src/daft-core/src/schema.rs index f867ba25ef..1fdcbfa6fb 100644 --- a/src/daft-core/src/schema.rs +++ b/src/daft-core/src/schema.rs @@ -1,5 +1,5 @@ use std::{ - collections::{BTreeMap, HashSet}, + collections::HashSet, fmt::{Display, Formatter, Result}, sync::Arc, }; @@ -91,7 +91,7 @@ impl Schema { let arrow_fields = arrow_fields?; Ok(arrow2::datatypes::Schema { fields: arrow_fields, - metadata: BTreeMap::new(), + metadata: Default::default(), }) }