You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line makes it appear that we actually want to parse most meta data from a vasprun.xml file (version, date, etc.), but this conditional is never hit because leaf.tag is never, e.g. 'generator'. I think the reason is probably because elementtree.iterparse seems to return xml elements depth first, i.e. leaf iterates over the tags inside <generator> but not that tag itself, but I don't have time to debug this in depth.
The text was updated successfully, but these errors were encountered:
pyiron_atomistics/pyiron_atomistics/vasp/vasprun.py
Line 84 in a66edac
This line makes it appear that we actually want to parse most meta data from a vasprun.xml file (version, date, etc.), but this conditional is never hit because
leaf.tag
is never, e.g. 'generator'. I think the reason is probably because elementtree.iterparse seems to return xml elements depth first, i.e.leaf
iterates over the tags inside<generator>
but not that tag itself, but I don't have time to debug this in depth.The text was updated successfully, but these errors were encountered: