Skip to content

Commit

Permalink
Fix pylint.
Browse files Browse the repository at this point in the history
  • Loading branch information
shyuep committed Aug 23, 2021
1 parent 9251797 commit 405a0b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymatgen/entries/computed_entries.py
Expand Up @@ -701,7 +701,7 @@ def normalize(self, mode: str = "formula_unit") -> "ComputedStructureEntry":
d = super().normalize(mode).as_dict()
d["structure"] = self.structure.as_dict()
entry = self.from_dict(d)
entry._composition /= factor # type: ignore
entry._composition /= factor # pylint: disable=E1101
return entry


Expand Down

0 comments on commit 405a0b2

Please sign in to comment.