Skip to content

Commit

Permalink
fix(types): Group.info -> NotImplementedError
Browse files Browse the repository at this point in the history
(until we implement it)
  • Loading branch information
jhamman committed Jun 1, 2024
1 parent b4cdf94 commit 5a276f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zarr/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit 5a276f8

Please sign in to comment.