Skip to content

Commit af8fc85

Browse files
historical_field_mappings making pyling happy
1 parent ed011a3 commit af8fc85

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sdk/python/feast/feature_store.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
from feast.protos.feast.serving.ServingService_pb2 import (
7171
FieldStatus,
7272
GetOnlineFeaturesResponse,
73-
)
73+
FieldStatusValue)
7474
from feast.protos.feast.types.EntityKey_pb2 import EntityKey as EntityKeyProto
7575
from feast.protos.feast.types.Value_pb2 import RepeatedValue, Value
7676
from feast.registry import Registry
@@ -1349,7 +1349,7 @@ def _read_from_online_store(
13491349
provider: Provider,
13501350
requested_features: List[str],
13511351
table: FeatureView,
1352-
) -> List[Tuple[List[Timestamp], List["FieldStatus.ValueType"], List[Value]]]:
1352+
) -> List[Tuple[List[Timestamp], List[FieldStatusValue], List[Value]]]:
13531353
""" Read and process data from the OnlineStore for a given FeatureView.
13541354
13551355
This method guarentees that the order of the data in each element of the
@@ -1404,7 +1404,7 @@ def _read_from_online_store(
14041404
def _populate_response_from_feature_data(
14051405
feature_data: Iterable[
14061406
Tuple[
1407-
Iterable[Timestamp], Iterable["FieldStatus.ValueType"], Iterable[Value]
1407+
Iterable[Timestamp], Iterable[FieldStatusValue], Iterable[Value]
14081408
]
14091409
],
14101410
indexes: Iterable[Iterable[int]],

0 commit comments

Comments
 (0)