From 5a276f8d3840f2b51747c19d5c5d4308cdfdb7cc Mon Sep 17 00:00:00 2001 From: Joseph Hamman Date: Fri, 31 May 2024 20:09:02 -0700 Subject: [PATCH] fix(types): Group.info -> NotImplementedError (until we implement it) --- src/zarr/group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zarr/group.py b/src/zarr/group.py index 2401934b84..7f57103928 100644 --- a/src/zarr/group.py +++ b/src/zarr/group.py @@ -276,7 +276,7 @@ def attrs(self) -> dict[str, Any]: @property def info(self): - return self.metadata.info + raise NotImplementedError async def create_group( self, @@ -527,7 +527,7 @@ def attrs(self) -> Attributes: @property def info(self): - return self._async_group.info + raise NotImplementedError def update_attributes(self, new_attributes: dict[str, Any]) -> Group: self._sync(self._async_group.update_attributes(new_attributes))