Remove Metadata Function
- Updated2022-07-11
- 1 minute(s) read
Remove Metadata Function
remove_metadata removes the specified metadata attribute from the current instance of Metadata.
with run.Metadata() as data:
data.add_metadata(
metadata_name=Fields.LotName,
metadata_value="Lot_1"
)
data.remove_metadata(
metadata_name=Fields.LotName
)
| Parameter | Required? | Data Type | Description |
|---|---|---|---|
| metadata_name | Yes | Fields | Name of the metadata attribute to remove. |