Skip to content

Commit

Permalink
Update docs/source/user_guide/python.rst
Browse files Browse the repository at this point in the history
Co-authored-by: Jacob Wilkins <[email protected]>
  • Loading branch information
ElliottKasoar and oerc0122 committed Nov 8, 2024
1 parent 7f6ecff commit ee72b37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/user_guide/python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Jupyter Notebook tutorials illustrating the use of currently available calculati
Calculation outputs
===================

By default, calculations performed will modify the underlying `ase.Atoms <https://wiki.fysik.dtu.dk/ase/ase/atoms.html>`_ object
By default, calculations performed will modify the underlying :class:`ase.Atoms` object
to store information in the ``Atoms.info`` and ``Atoms.arrays`` dictionaries about the MLIP used.

Additional dictionary keys include ``arch``, corresponding to the MLIP architecture used,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_singlepoint_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ def test_singlepoint():
assert summary_path.exists

finally:
# Check atoms can read read, then delete file
# Ensure files deleted if command fails
log_path.unlink(missing_ok=True)
summary_path.unlink(missing_ok=True)

# Check atoms file can be read, then delete
atoms = read_atoms(results_path)
assert "mace_mp_energy" in atoms.info

Expand Down

0 comments on commit ee72b37

Please sign in to comment.