Skip to content

Commit

Permalink
Merge branch 'dynamic-chunks-interface' of https://github.com/pangeo-…
Browse files Browse the repository at this point in the history
…forge/pangeo-forge-recipes into dynamic-chunks-interface
  • Loading branch information
jbusecke committed Nov 15, 2023
2 parents f19acfb + 5ee3f8a commit 2afd727
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/feedstock/gpcp_from_gcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_ds(store: zarr.storage.FSStore) -> zarr.storage.FSStore:
"Global Precipitation Climatatology Project (GPCP) " "Climate Data Record (CDR), Daily V1.3"
)
# Making sure that the native chunking is different from the dynamic chunking
assert ds.chunks['time'][0] == 1
assert ds.chunks["time"][0] == 1

return store

Expand Down
2 changes: 1 addition & 1 deletion examples/feedstock/gpcp_from_gcs_dynamic_chunks.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def test_ds(store: zarr.storage.FSStore) -> zarr.storage.FSStore:
"Global Precipitation Climatatology Project (GPCP) " "Climate Data Record (CDR), Daily V1.3"
)

assert ds.chunks['time'][0] == 2
assert ds.chunks["time"][0] == 2
return store


Expand Down

0 comments on commit 2afd727

Please sign in to comment.