Skip to content

Commit

Permalink
added endpoint ids
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmshn committed Mar 23, 2021
1 parent 0549d11 commit 3a38e6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions emmet-core/emmet/core/electrode.py
Expand Up @@ -73,11 +73,11 @@ class InsertionVoltagePairDoc(VoltagePairDoc):
None, description="The energy above hull of the discharged material."
)

id_charge: Union[MPID, None] = Field(
id_charge: Union[MPID, int, None] = Field(
None, description="The material-id of the charged structure."
)

id_discharge: Union[MPID, None] = Field(
id_discharge: Union[MPID, int, None] = Field(
None, description="The material-id of the charged structure."
)

Expand Down

0 comments on commit 3a38e6f

Please sign in to comment.