"""Generic Validation functions for input values. Do not import any logic controllers, models, or handlers. """ def is_not_self_copy(from_uid: int, to_uid: int) -> bool: """Check copy assets to themselves. Returns true if source and destination items are different. Args: from_uid (int): Source track or product id. to_uid (int): Destination track or product id. Returns: bool: True if source and destination ID's are different. """ return from_uid != to_uid