Skip to content

Commit

Permalink
Materials min max query op index bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
munrojm committed May 3, 2021
1 parent a61bf34 commit 55350af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mp_api/routes/materials/query_operators.py
Expand Up @@ -145,7 +145,7 @@ def ensure_indexes(self):
for key in keys:
if "_min" in key:
key = key.replace("_min", "")
indexes.append((key, False))
indexes.append((key, False))
return indexes


Expand Down

0 comments on commit 55350af

Please sign in to comment.