Skip to content

Commit d4f8c48

Browse files
committed
ignore inconsistent pydantic/mypy typing between versions
1 parent 1dcbac8 commit d4f8c48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stac_model/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class SummariesMLModelExtension(SummariesExtension):
173173

174174
def _check_mlm_property(self, prop: str) -> FieldInfo:
175175
try:
176-
return MLModelProperties.model_fields[prop]
176+
return MLModelProperties.model_fields[prop] # type: ignore
177177
except KeyError as err:
178178
raise AttributeError(f"Name '{prop}' is not a valid MLM property.") from err
179179

0 commit comments

Comments
 (0)