def from_yaml()

in custom_image_cli/validation_tool/validation_models/validation_models.py [0:0]


    def from_yaml(cls, loader, node):
        for data in loader.construct_yaml_map(node):
            pass
        name = data['Name']
        relative_location = data['RelativeLocation']
        file_prefixes = data['FilePrefixes']
        return cls(name, relative_location, file_prefixes)