Skip to content

Commit

Permalink
io.core.mpfile: skip _hdata in ids prop
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed May 17, 2017
1 parent 40b1132 commit 46f457b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mpcontribs/io/core/mpfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ def __init__(self, data=RecursiveDict()):

@property
def ids(self):
return self.document.keys()
return [
k for k in self.document.keys()
if k.lower() != mp_level01_titles[0]
]

@property
def hdata(self):
Expand Down

0 comments on commit 46f457b

Please sign in to comment.