Skip to content

Commit

Permalink
Implement items() for LindiH5pyFile
Browse files Browse the repository at this point in the history
  • Loading branch information
magland committed Jul 18, 2024
1 parent af32db8 commit 24c5371
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lindi/LindiH5pyFile/LindiH5pyFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,9 @@ def get(self, name, default=None, getclass=False, getlink=False):
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 24c5371

Please sign in to comment.