def __init__()

in src/fmeval/reporting/cells.py [0:0]


    def __init__(self, items: List[str], list_type: ListType):
        """
        :param items:  A list of strings where each string represents one item in the list.
        :param list_type: Whether the list is bulleted or numbered.
        """
        if list_type == ListType.NUMBERED:
            list_content = SINGLE_NEWLINE.join(f"{idx}. {value}" for idx, value in enumerate(items, start=1))
        else:
            list_content = SINGLE_NEWLINE.join(f"* {value}" for value in items)
        super().__init__(list_content)