MCPcopy
hub / github.com/feast-dev/feast / from_dict

Method from_dict

sdk/python/feast/table_format.py:165–170  ·  view source on GitHub ↗
(cls, data: Dict)

Source from the content-addressed store, hash-verified

163
164 @classmethod
165 def from_dict(cls, data: Dict) -> "IcebergFormat":
166 return cls(
167 catalog=data.get("catalog"),
168 namespace=data.get("namespace"),
169 properties=data.get("properties", {}),
170 )
171
172 def to_proto(self) -> "TableFormatProto":
173 """Convert to protobuf TableFormat message"""

Callers

nothing calls this directly

Calls 1

getMethod · 0.80

Tested by

no test coverage detected