Skip to content

Commit

Permalink
Fix hydrogen element injection in anonymous formula queries (#957)
Browse files Browse the repository at this point in the history
* Pin pymatgen

* Remove D from anonymous element list
  • Loading branch information
Jason Munro authored Mar 2, 2024
1 parent 0bd524c commit 6d88742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emmet-api/emmet/api/routes/materials/materials/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def formula_to_criteria(formulas: str) -> Dict:
Returns:
Mongo style search criteria for this formula
"""
dummies = "ADEGJLMQRXZ"
dummies = "AEGJLMQRXZ"

formula_list = [formula.strip() for formula in formulas.split(",")]

Expand Down

0 comments on commit 6d88742

Please sign in to comment.