Skip to content

Commit 649c429

Browse files
feat: Unify Transformations
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent ad4f346 commit 649c429

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sdk/python/feast/feature_store.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,10 @@ def apply(
979979
# Create ODFV with same transformation logic
980980
online_fv = OnDemandFeatureView(
981981
name=f"{fv.name}_online",
982-
sources=cast(List[Union[FeatureView, FeatureViewProjection, RequestSource]], fv.source_views or []),
982+
sources=cast(
983+
List[Union[FeatureView, FeatureViewProjection, RequestSource]],
984+
fv.source_views or [],
985+
),
983986
schema=fv.schema or [],
984987
feature_transformation=fv.feature_transformation, # Same transformation!
985988
description=f"Online serving for {fv.name}",

0 commit comments

Comments
 (0)