Question 3 – 7 Points This question is based on the same fa…

Question 3 – 7 Points This question is based on the same fact pattern as question 2.   Review that question again if necessary to refresh your memory.   Dolly Paul has also sued Superb Cleaners for negligence per se.   Required – 7 Points: Will Dolly Paul prevail in her negligence per se lawsuit against Superb Cleaners?  In separately lettered or numbered paragraphs, discuss each of the elements of Dolly Paul’s negligence per se claim against Superb Cleaners.

class Report:    def __init__(self, title: str) -> None:   …

class Report:    def __init__(self, title: str) -> None:        self._title = title     def render(self) -> str:        raise NotImplementedError(“bad”)   class HtmlReport(Report):    def __init__(self, title: str) -> None:        super().__init__(title)     def render(self) -> str:        return f”{self._title.lower()}”     def __repr__(self) -> str:        return f”HtmlReport(title={self._title}, output={self.render()})”   def main() -> None:    items: list[Report] = [HtmlReport(“HW1”)]    print(items) main() What gets printed when the main is run?