Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 15, 2023
1 parent caef6c0 commit 5ee3f8a
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 5ee3f8a

Please sign in to comment.