We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da3cdb7 commit a0b409bCopy full SHA for a0b409b
1 file changed
emmet-builders/emmet/builders/base.py
@@ -1,7 +1,7 @@
1
from pydantic import Field
2
-from pymatgen.core import Structure
3
4
from emmet.core.base import EmmetBaseModel
+from emmet.core.types.pymatgen_types.structure_type import StructureType
5
from emmet.core.types.typing import IdentifierType
6
7
@@ -17,4 +17,4 @@ class BaseBuilderInput(EmmetBaseModel):
17
18
deprecated: bool = Field(False)
19
material_id: IdentifierType | None = Field(None)
20
- structure: Structure
+ structure: StructureType
0 commit comments