Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fix formatting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ncpenke committed Mar 6, 2022
1 parent e684328 commit 6a077b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/array/fixed_size_list/mutable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::sync::Arc;
use crate::{
array::{Array, MutableArray, TryExtend, TryPush},
bitmap::MutableBitmap,
datatypes::{DataType,Field},
datatypes::{DataType, Field},
error::{ArrowError, Result},
};

Expand Down Expand Up @@ -45,7 +45,7 @@ impl<M: MutableArray> MutableFixedSizeListArray<M> {
pub fn new_with_field(values: M, name: &str, nullable: bool, size: usize) -> Self {
let data_type = DataType::FixedSizeList(
Box::new(Field::new(name, values.data_type().clone(), nullable)),
size
size,
);
assert_eq!(values.len(), 0);
Self {
Expand Down

0 comments on commit 6a077b9

Please sign in to comment.