Skip to content

Commit

Permalink
Fix possible typo in ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Feb 16, 2024
1 parent de80859 commit a8b4c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibstore/_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def get_mm_energies_by_molecule_id(
for (energy,) in db.db.query(DBMMConformerRecord.energy)
.filter_by(parent_id=id)
.filter_by(force_field=force_field)
.order_by(DBQMConformerRecord.qcarchive_id)
.order_by(DBMMConformerRecord.qcarchive_id)
.all()
]

Expand Down

0 comments on commit a8b4c53

Please sign in to comment.