Skip to content

Commit

Permalink
fix typing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmcdermott committed Sep 7, 2021
1 parent 378d39e commit 4069933
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymatgen/analysis/interface_reactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def _get_plotly_figure(self) -> Figure:

annotations = self._get_plotly_annotations(x, energy, reactions) # type: ignore

min_idx = energy.index(min(energy))
min_idx = energy.index(min(energy)) # type: ignore

x_min = x.pop(min_idx)
e_min = energy.pop(min_idx)
Expand Down

0 comments on commit 4069933

Please sign in to comment.