Skip to content

Commit a3d18aa

Browse files
committed
fix: zarr string did not need to be optional
1 parent fcc8969 commit a3d18aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/storage/zarr/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ pub fn create_arrays<TStorage: ?Sized>(
269269
ItemType::U64 => data_type::uint64(),
270270
ItemType::I64 => data_type::int64(),
271271
ItemType::Bool => data_type::bool(),
272-
ItemType::String => data_type::optional(data_type::string()),
272+
ItemType::String => data_type::string(),
273273
ItemType::DateTime64(unit) => {
274274
let unit = match unit {
275275
nuts_storable::DateTimeUnit::Seconds => NumpyTimeUnit::Second,

0 commit comments

Comments
 (0)