Skip to content

Commit

Permalink
Fix incar handling in elasticity (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
munrojm committed Oct 20, 2023
1 parent b2cedcf commit 24a74ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emmet-builders/emmet/builders/materials/elasticity.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def filter_by_incar_settings(
break

if isinstance(incar[k], str):
if incar[k].lower() != v.lower():
if incar[k].lower() != str(v).lower():
ok = False
break

Expand Down

0 comments on commit 24a74ea

Please sign in to comment.