Skip to content

Commit 12c4943

Browse files
committed
cleanup
1 parent f8a45ba commit 12c4943

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

xarray/backends/zarr.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,6 @@ def store(
960960
# To do so, we decode variables directly to access the proper encoding,
961961
# without going via xarray.Dataset to avoid needing to load
962962
# index variables into memory.
963-
964963
existing_vars, _, _ = conventions.decode_cf_variables(
965964
variables={
966965
k: self.open_store_variable(name=k) for k in existing_variable_names

xarray/tests/test_backends.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2927,7 +2927,7 @@ def test_append_string_length_mismatch_works(self, dtype) -> None:
29272927
skip_if_zarr_format_2("This doesn't work with Zarr format 2")
29282928
# ...but it probably would if we used object dtype
29292929
if has_zarr_v3_dtypes:
2930-
pytest.skip("This works on pre dtype updated zarr python")
2930+
pytest.skip("This works on pre ZDtype Zarr-Python, but fails after.")
29312931

29322932
ds, ds_to_append = create_append_string_length_mismatch_test_data(dtype)
29332933
expected = xr.concat([ds, ds_to_append], dim="time")

0 commit comments

Comments
 (0)