From a007807a660c4a40879a3fe3b81312554bbd1e45 Mon Sep 17 00:00:00 2001 From: gbmarc1 Date: Wed, 8 Mar 2023 17:51:51 -0500 Subject: [PATCH] fix: Feature view `entities` from_proto type 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 d91ee9080d5..e26759ba92e 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 = [