Skip to content

Commit

Permalink
fix MPID
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Feb 24, 2021
1 parent 6b4af84 commit ad657f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emmet-core/emmet/core/mpid.py
Expand Up @@ -19,6 +19,6 @@ def __lt__(self, other: Union["MPID", int, str]):
return True

self_parts = self.split("-")
other_parts = other.split()
other_parts = other.split("-")

return self_parts < other_parts

0 comments on commit ad657f1

Please sign in to comment.