Skip to content

Commit

Permalink
fix: Feature view entities from_proto type
Browse files Browse the repository at this point in the history
Signed-off-by: gbmarc1 <[email protected]>
  • Loading branch information
gbmarc1 committed Mar 8, 2023
1 parent be34905 commit a007807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/feature_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def from_proto(cls, feature_view_proto: FeatureViewProto):
feature_view.stream_source = stream_source

# This avoids the deprecation warning.
feature_view.entities = feature_view_proto.spec.entities
feature_view.entities = list(feature_view_proto.spec.entities)

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

0 comments on commit a007807

Please sign in to comment.