"""Validation functionality for objectives."""fromcollections.abcimportCollectionfrombaybe.targets.baseimportTarget
[docs]defvalidate_target_names(# noqa: DOC101, DOC103_,__,targets:Collection[Target])->None:"""An attrs-compatible validator to assert unique target names. Raises: ValueError: If the given collection contains targets with the same name. """# noqa: D401iflen(names:=[t.namefortintargets])!=len(set(names)):raiseValueError("All targets must have unique names.")