Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
Signed-off-by: Zishen Wang <[email protected]>
  • Loading branch information
zz11ss11zz authored Sep 22, 2024
1 parent 1c6cd6f commit 32ea875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maml/apps/gbe/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_b0(bulk_structure: Structure) -> float:
for d in data_source:
if d["pretty_formula"] in b0_dict:
continue
bs = rester.get_structure_by_material_id(d["material_id"])
bs = rester.get_structure_by_material_id(d["material_id"]) # type: ignore
b0 = get_b0(bs)
b0_dict.update({d["pretty_formula"]: b0})
return b0_dict
Expand Down

0 comments on commit 32ea875

Please sign in to comment.