Skip to content

Commit

Permalink
fix styling and arg order
Browse files Browse the repository at this point in the history
Signed-off-by: Yun Nan Liu <yunnanl@twitter.com>
  • Loading branch information
Yun Nan Liu committed Jan 19, 2022
1 parent 5d2279f commit d2aee4a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,11 @@ def extract_objects_for_apply_delete(project, registry, repo):


def apply_total_with_repo_instance(
store: FeatureStore,
project: str,
registry: Registry,
repo: RepoContents,
skip_source_validation: bool,
store: FeatureStore,
project: str,
registry: Registry,
repo: RepoContents,
skip_source_validation: bool,
):
if not skip_source_validation:
data_sources = [t.batch_source for t in repo.feature_views]
Expand All @@ -268,7 +268,7 @@ def apply_total(repo_config: RepoConfig, repo_path: Path, skip_source_validation

os.chdir(repo_path)
project, registry, repo, store = _prepare_registry_and_repo(repo_config, repo_path)
apply_total_with_repo_instance(repo, registry, repo, store, skip_source_validation)
apply_total_with_repo_instance(store, project, registry, repo, skip_source_validation)


def log_cli_output(diff, views_to_delete, views_to_keep):
Expand Down

0 comments on commit d2aee4a

Please sign in to comment.