Skip to content

Commit 419b981

Browse files
committed
docs: updated documentation for delete_feature_view
1 parent 09505d4 commit 419b981

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

sdk/python/feast/feature_store.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ def get_data_source(self, name: str) -> DataSource:
543543

544544
def delete_feature_view(self, name: str):
545545
"""
546-
Deletes a feature view.
546+
Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView).
547547
548548
Args:
549549
name: Name of feature view.

sdk/python/feast/infra/registry/base_registry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ def apply_feature_view(
266266
@abstractmethod
267267
def delete_feature_view(self, name: str, project: str, commit: bool = True):
268268
"""
269-
Deletes a feature view or raises an exception if not found.
269+
Deletes a feature view of any kind (FeatureView, OnDemandFeatureView, StreamFeatureView).
270+
Or raises an exception if not found.
271+
270272
271273
Args:
272274
name: Name of feature view

0 commit comments

Comments
 (0)