Skip to content

Commit

Permalink
fix type for site_transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Aug 8, 2024
1 parent bb1321a commit f262d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pymatgen/transformations/site_transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def _complete_ordering(self, structure: Structure, num_remove_dict):
for ii, t_sites in enumerate(tested_sites):
t_energy = all_structures[ii]["energy"]
if abs((energy - t_energy) / len(s_new)) < 1e-5 and sg.are_symmetrically_equivalent(
sites_to_remove, t_sites, symm_prec=symprec
set(sites_to_remove), set(t_sites), symm_prec=symprec
):
already_tested = True

Expand Down

0 comments on commit f262d9f

Please sign in to comment.