Skip to content

Commit

Permalink
Unnecessary None provided as default
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Apr 1, 2024
1 parent adf3601 commit 2f90569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zarr/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def create_array(self, shape: Union[int, Tuple[int, ...]], **kwargs):
"compressor": kwargs.pop("compressor", self.compressor),
"chunk_store": chunk_store,
"storage_transformers": self.create_storage_transformers(shape),
"filters": kwargs.pop("filters", self.create_filters(kwargs.get("dtype", None))),
"filters": kwargs.pop("filters", self.create_filters(kwargs.get("dtype"))),
}

# keyword arguments for array instantiation
Expand Down

0 comments on commit 2f90569

Please sign in to comment.