We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3952e12 commit d4b8ca2Copy full SHA for d4b8ca2
sdk/python/feast/data_source.py
@@ -730,7 +730,7 @@ def to_proto(self) -> DataSourceProto:
730
name=self.name,
731
type=DataSourceProto.PUSH_SOURCE,
732
push_options=options,
733
- timestamp_sdk/python/feast/feature_view.pyself.timestamp_field,
+ timestamp_field=self.timestamp_field,
734
description=self.description,
735
tags=self.tags,
736
owner=self.owner,
sdk/python/feast/feature_view.py
@@ -207,7 +207,6 @@ def __init__(
207
# current `features` parameter only accepts feature columns.
208
_features = _schema
209
210
-
211
cols = [entity for entity in self.entities] + [
212
field.name for field in _features
213
]
0 commit comments