Skip to content

Commit

Permalink
remove double list addition to pcm and cds forces in molecules forces…
Browse files Browse the repository at this point in the history
… doc
  • Loading branch information
esoteric-ephemera committed Jan 6, 2025
1 parent 4b6a487 commit f24edd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emmet-core/emmet/core/molecules/trajectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ class ForcesDoc(PropertyDoc):
description="High-precision atomic forces (units: Ha/Bohr)",
)

pcm_forces: Optional[List[List[List[List[float]]]]] = Field(
pcm_forces: Optional[List[List[float]]] = Field(
None,
description="Electrostatic atomic forces from polarizable continuum model (PCM) implicit solvation "
"(units: Ha/Bohr).",
)

cds_forces: Optional[List[List[List[List[float]]]]] = Field(
cds_forces: Optional[List[List[float]]] = Field(
None,
description="Atomic force contributions from cavitation, dispersion, and structural rearrangement in the SMx "
"family of implicit solvent models (units: Ha/Bohr)",
Expand Down

0 comments on commit f24edd6

Please sign in to comment.