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
    )
Table 12. Python Remove Metadata Function Parameter
Parameter Required? Data Type Description
metadata_name Yes Fields Name of the metadata attribute to remove.