Skip to content

Commit 6dc6104

Browse files
committed
changed file name from inference_helpers.py to inference.py
Signed-off-by: David Y Liu <davidyliuliu@gmail.com>
1 parent 79e1c72 commit 6dc6104

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdk/python/feast/feature_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from feast.entity import Entity
2727
from feast.errors import FeastProviderLoginError, FeatureViewNotFoundException
2828
from feast.feature_view import FeatureView
29-
from feast.inference_helpers import infer_entity_value_type_from_feature_views
29+
from feast.inference import infer_entity_value_type_from_feature_views
3030
from feast.infra.provider import Provider, RetrievalJob, get_provider
3131
from feast.online_response import OnlineResponse, _infer_online_entity_rows
3232
from feast.protos.feast.serving.ServingService_pb2 import (

sdk/python/feast/repo_operations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
from feast import Entity, FeatureTable
1515
from feast.feature_view import FeatureView
16-
from feast.inference_helpers import infer_entity_value_type_from_feature_views
16+
from feast.inference import infer_entity_value_type_from_feature_views
1717
from feast.infra.offline_stores.helpers import assert_offline_store_supports_data_source
1818
from feast.infra.provider import get_provider
1919
from feast.names import adjectives, animals

sdk/python/tests/test_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from feast import Entity, ValueType
99
from feast.feature_view import FeatureView
10-
from feast.inference_helpers import infer_entity_value_type_from_feature_views
10+
from feast.inference import infer_entity_value_type_from_feature_views
1111

1212

1313
@pytest.mark.integration

0 commit comments

Comments
 (0)