Skip to content

featurebyte.Feature.delete

Description

Deletes a feature from the persistent data store. A feature can only be deleted from the persistent data store if:

  • the feature readiness is DRAFT
  • the feature is not used in any feature list
  • the feature is not a default feature with manual version mode

Examples

Delete a feature.

>>> feature = catalog.get_feature("InvoiceCount_60days")
>>> feature.delete()

See Also