Skip to content

Commit 8d030fd

Browse files
committed
fix imports
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent 748a77c commit 8d030fd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

sdk/python/feast/infra/passthrough_provider.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
import pandas
55
from tqdm import tqdm
66

7-
from feast import Entity, FeatureTable, FeatureView, RepoConfig
7+
from feast.entity import Entity
8+
from feast.feature_table import FeatureTable
9+
from feast.feature_view import FeatureView
810
from feast.infra.offline_stores.offline_store import RetrievalJob
911
from feast.infra.offline_stores.offline_utils import get_offline_store_from_config
1012
from feast.infra.online_stores.helpers import get_online_store_from_config
@@ -17,6 +19,7 @@
1719
from feast.protos.feast.types.EntityKey_pb2 import EntityKey as EntityKeyProto
1820
from feast.protos.feast.types.Value_pb2 import Value as ValueProto
1921
from feast.registry import Registry
22+
from feast.repo_config import RepoConfig
2023

2124

2225
class PassthroughProvider(Provider):

0 commit comments

Comments
 (0)