def __matches__()

in src/manifests/component_manifest.py [0:0]


    def __matches__(self, focus: str = None, platform: str = None) -> bool:
        matches = ((not focus) or (self.name == focus)) and ((not platform) or (not self.platforms) or (platform in self.platforms))

        if not matches:
            logging.info(f"Skipping {self.name}")

        return matches