Skip to content

Commit

Permalink
fix: Feature view entities from_proto type (#3524)
Browse files Browse the repository at this point in the history
Signed-off-by: gbmarc1 <marcantoine.belanger@shopify.com>
  • Loading branch information
gbmarc1 authored Mar 9, 2023
1 parent be34905 commit 57bbb61
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 57bbb61

Please sign in to comment.