Skip to content

featurebyte.BatchFeatureTable.update_description

update_description(
description: Optional[str]
)

Description

Update description for the batch feature table.

Parameters

  • description: Optional[str]
    Description of the object

Examples

>>> batch_feature_table = catalog.get_batch_feature_table(
...     "batch_feature_table_name"
... )  # doctest: +SKIP
>>> batch_feature_table.update_description(description)