Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
piket committed Aug 31, 2023
1 parent 98d2940 commit b7409d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -994,12 +994,14 @@ def apply(
tables_to_keep: List[FeatureView] = views_to_update + sfvs_to_update # type: ignore

# TODO: remove
print(f"""Update project={self.project},
print(
f"""Update project={self.project},
tables_to_delete={tables_to_delete},
tables_to_keep={tables_to_keep},
entities_to_delete={entities_to_delete if not partial else []},
entities_to_keep={entities_to_update},
partial={partial},""")
partial={partial},"""
)
self._get_provider().update_infra(
project=self.project,
tables_to_delete=tables_to_delete,
Expand Down

0 comments on commit b7409d7

Please sign in to comment.