Skip to content

Commit a007807

Browse files
committed
fix: Feature view entities from_proto type
Signed-off-by: gbmarc1 <marcantoine.belanger@shopify.com>
1 parent be34905 commit a007807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/feature_view.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def from_proto(cls, feature_view_proto: FeatureViewProto):
400400
feature_view.stream_source = stream_source
401401

402402
# This avoids the deprecation warning.
403-
feature_view.entities = feature_view_proto.spec.entities
403+
feature_view.entities = list(feature_view_proto.spec.entities)
404404

405405
# Instead of passing in a schema, we set the features and entity columns.
406406
feature_view.features = [

0 commit comments

Comments
 (0)