Skip to content

Commit d4b8ca2

Browse files
committed
fixes
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 3952e12 commit d4b8ca2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

sdk/python/feast/data_source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def to_proto(self) -> DataSourceProto:
730730
name=self.name,
731731
type=DataSourceProto.PUSH_SOURCE,
732732
push_options=options,
733-
timestamp_sdk/python/feast/feature_view.pyself.timestamp_field,
733+
timestamp_field=self.timestamp_field,
734734
description=self.description,
735735
tags=self.tags,
736736
owner=self.owner,

sdk/python/feast/feature_view.py

-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ def __init__(
207207
# current `features` parameter only accepts feature columns.
208208
_features = _schema
209209

210-
211210
cols = [entity for entity in self.entities] + [
212211
field.name for field in _features
213212
]

0 commit comments

Comments
 (0)