Skip to content

Commit

Permalink
Merge d72be93 into 909b912
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Aug 21, 2020
2 parents 909b912 + d72be93 commit 78fca6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyiron/atomistics/structure/atoms.py
Expand Up @@ -481,7 +481,8 @@ def from_hdf(self, hdf, group_name="structure"):
self._high_symmetry_path = None
if "high_symmetry_path" in hdf_atoms.list_nodes():
self._high_symmetry_path = hdf_atoms["high_symmetry_path"]
self.info = hdf_atoms["info"]
if "info" in hdf_atoms.list_nodes():
self.info = hdf_atoms["info"]
return self

else:
Expand Down

0 comments on commit 78fca6e

Please sign in to comment.