Skip to content

Commit

Permalink
Rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Klegar <jacob@tecton.ai>
  • Loading branch information
jklegar committed Mar 12, 2021
1 parent 36beacd commit 85465a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from pathlib import Path
from typing import Optional


from feast.infra.provider import Provider, get_provider
from feast.registry import Registry
from feast.repo_config import (
Expand Down
8 changes: 4 additions & 4 deletions sdk/python/feast/repo_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ class OnlineStoreConfig(NamedTuple):


class RepoConfig(NamedTuple):
metadata_store: str = "./metadata_store"
project: str = "default"
provider: str = "local"
online_store: OnlineStoreConfig = OnlineStoreConfig()
metadata_store: str
project: str
provider: str
online_store: OnlineStoreConfig


def load_repo_config(repo_path: Path) -> RepoConfig:
Expand Down

0 comments on commit 85465a1

Please sign in to comment.