Skip to content

Commit

Permalink
fix write call in script
Browse files Browse the repository at this point in the history
  • Loading branch information
mjohnson541 committed Dec 10, 2024
1 parent 827506c commit 3fcc270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynta/almace/wrapper_almace.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def calculate(self, atoms, properties, system_changes):
atoms.calc = calc
atoms.get_potential_energy()
atoms.get_forces()
write(atoms,"out.xyz")
write("out.xyz", atoms)
"""

with open("temp_script.py",'w') as f:
Expand Down

0 comments on commit 3fcc270

Please sign in to comment.