Skip to content

Commit

Permalink
Remove needless print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-schlipf committed May 17, 2023
1 parent 6ad82e5 commit 2e319be
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/py4vasp/_data/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class Structure(slice_.Mixin, base.Refinery):
def from_POSCAR(cls, poscar, *, elements=None):
"""Generate a structure from string in POSCAR format."""
poscar = _replace_or_set_elements(str(poscar), elements)
print(poscar)
poscar = io.StringIO(poscar)
structure = ase.io.read(poscar, format="vasp")
return cls.from_ase(structure)
Expand Down

0 comments on commit 2e319be

Please sign in to comment.