system.kanoa.quality.config.deleteTolerances
Description
Deletes all tolerances for an attribute in KanoaQDS.Syntax
deleteTolerances(attributeId, userId)- int attributeId - ID of the attribute for which tolerances should be deleted.
- int userId - User ID
- bool successFlag - Boolean indicating the success of the deletion.
- str msg - Message indicating the result of the deletion.
Code Examples
# Usage example
delete_success, delete_msg = system.kanoa.quality.config.deleteTolerances(attributeId=1, userId=123)
if delete_success:
print(f"Successfully deleted tolerances for attribute: {delete_msg}")
else:
print(f"Deletion failed. Error: {delete_msg}")