Skip to content

Commit 57bbb61

Browse files
authored
fix: Feature view entities from_proto type (#3524)
Signed-off-by: gbmarc1 <[email protected]>
1 parent be34905 commit 57bbb61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/feature_view.py

Lines changed: 1 addition & 1 deletion
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)