From 5ee3f8ae7702e939a256bbed26b8bcaf2ce81b33 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 19:12:01 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/feedstock/gpcp_from_gcs.py | 2 +- examples/feedstock/gpcp_from_gcs_dynamic_chunks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/feedstock/gpcp_from_gcs.py b/examples/feedstock/gpcp_from_gcs.py index a29da23b..9b13d59d 100644 --- a/examples/feedstock/gpcp_from_gcs.py +++ b/examples/feedstock/gpcp_from_gcs.py @@ -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 diff --git a/examples/feedstock/gpcp_from_gcs_dynamic_chunks.py b/examples/feedstock/gpcp_from_gcs_dynamic_chunks.py index 99c96613..bc9c3fd0 100644 --- a/examples/feedstock/gpcp_from_gcs_dynamic_chunks.py +++ b/examples/feedstock/gpcp_from_gcs_dynamic_chunks.py @@ -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