Remove Additional Info Function

remove_additional_info removes the specified information from the current instance of Metadata.

Note If you attempt to remove information that does not exist or has already been removed, the Logging Library generates an error.
with run.Metadata() as data:
    for mode in modes:
        
        data.add_string_parameter("Mode", mode)
        for software in testing_softwares:
            
            data.add_additional_info("Testing Software", software)
            
            Data.remove_additional_info("Testing Software")
Table 17. Python Remove Additional Info Function Parameters
Parameter Required? Data Type Description
info_name Yes String Name of the information to remove.