From 57bbb61829fffe08ff3e09aceb1e82ea862b55a2 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Date: Thu, 9 Mar 2023 09:03:49 -0500 Subject: [PATCH] fix: Feature view `entities` from_proto type (#3524) Signed-off-by: gbmarc1 --- sdk/python/feast/feature_view.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/feast/feature_view.py b/sdk/python/feast/feature_view.py index d91ee9080d..e26759ba92 100644 --- a/sdk/python/feast/feature_view.py +++ b/sdk/python/feast/feature_view.py @@ -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 = [