Skip to content

Commit 767f4ea

Browse files
remove supports versions
1 parent 066ca12 commit 767f4ea

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

mp_api/client/core/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ class BaseRester:
8484

8585
suffix: str = ""
8686
document_model: type[BaseModel] | None = None
87-
supports_versions: bool = False
8887
primary_key: str = "material_id"
8988

9089
def __init__(

mp_api/client/routes/materials/materials.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
class MaterialsRester(CoreRester):
1414
suffix = "materials/core"
1515
document_model = MaterialsDoc # type: ignore
16-
supports_versions = True
1716
primary_key = "material_id"
1817
_sub_resters = MATERIALS_RESTERS
1918

mp_api/client/routes/materials/thermo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
class ThermoRester(BaseRester):
1616
suffix = "materials/thermo"
1717
document_model = ThermoDoc # type: ignore
18-
supports_versions = True
1918
primary_key = "thermo_id"
2019

2120
def search(

0 commit comments

Comments
 (0)