Skip to content

Commit

Permalink
Lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Chia committed Aug 8, 2023
1 parent 9f13bd7 commit bb47bb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/daft-core/src/schema.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::{
collections::{BTreeMap, HashSet},
collections::HashSet,
fmt::{Display, Formatter, Result},
sync::Arc,
};
Expand Down Expand Up @@ -91,7 +91,7 @@ impl Schema {
let arrow_fields = arrow_fields?;
Ok(arrow2::datatypes::Schema {
fields: arrow_fields,
metadata: BTreeMap::new(),
metadata: Default::default(),
})
}

Expand Down

0 comments on commit bb47bb9

Please sign in to comment.