Skip to content

Commit

Permalink
Merge branch 'impl-keys' into split-contiguous-datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Jul 18, 2024
2 parents ffcd45a + 24c5371 commit 1db7e81
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lindi/LindiH5pyFile/LindiH5pyFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,12 @@ def get(self, name, default=None, getclass=False, getlink=False):
raise Exception("Getting class is not allowed")
return self._get_item(name, getlink=getlink, default=default)

def keys(self): # type: ignore
return self._the_group.keys()

def items(self):
return self._the_group.items()

def __iter__(self):
return self._the_group.__iter__()

Expand Down

0 comments on commit 1db7e81

Please sign in to comment.