Skip to content

Commit

Permalink
fix: lint formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
zabarn committed Oct 16, 2024
1 parent 46d1992 commit 222ee63
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions sdk/python/feast/feature_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,10 @@ def materialize_incremental(
feature_views
)

if getattr(self.config.online_store, "lazy_table_creation", False) and self.config.provider == "expedia":
if (
getattr(self.config.online_store, "lazy_table_creation", False)
and self.config.provider == "expedia"
):
# feature_views_to_delete = self._get_feature_views_to_delete()
# don't delete any tables for now

Expand All @@ -1267,7 +1270,7 @@ def materialize_incremental(
entities_to_delete=[],
entities_to_keep=[],
partial=True,
materialization_update=True, # type: ignore
materialization_update=True, # type: ignore
)

_print_materialization_log(
Expand Down Expand Up @@ -1366,7 +1369,10 @@ def materialize(
feature_views
)

if getattr(self.config.online_store, "lazy_table_creation", False) and self.config.provider == "expedia":
if (
getattr(self.config.online_store, "lazy_table_creation", False)
and self.config.provider == "expedia"
):
# feature_views_to_delete = self._get_feature_views_to_delete()
# don't delete any tables for now

Expand All @@ -1377,7 +1383,7 @@ def materialize(
entities_to_delete=[],
entities_to_keep=[],
partial=True,
materialization_update=True, # type: ignore
materialization_update=True, # type: ignore
)

_print_materialization_log(
Expand Down

0 comments on commit 222ee63

Please sign in to comment.