We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 066ca12 commit 767f4eaCopy full SHA for 767f4ea
3 files changed
mp_api/client/core/client.py
@@ -84,7 +84,6 @@ class BaseRester:
84
85
suffix: str = ""
86
document_model: type[BaseModel] | None = None
87
- supports_versions: bool = False
88
primary_key: str = "material_id"
89
90
def __init__(
mp_api/client/routes/materials/materials.py
@@ -13,7 +13,6 @@
13
class MaterialsRester(CoreRester):
14
suffix = "materials/core"
15
document_model = MaterialsDoc # type: ignore
16
- supports_versions = True
17
primary_key = "material_id"
18
_sub_resters = MATERIALS_RESTERS
19
mp_api/client/routes/materials/thermo.py
@@ -15,7 +15,6 @@
class ThermoRester(BaseRester):
suffix = "materials/thermo"
document_model = ThermoDoc # type: ignore
primary_key = "thermo_id"
20
21
def search(
0 commit comments