Path 1: 15 calls (1.0)
→ count 1 (15)
1def line(self, count: int = 1) -> None: 2 """Write new line(s). 3 4 Args: 5 count (int, optional): Number of new lines. Defaults to 1. 6 """ 7 8 assert count >= 0, "count must be >= 0" 9 self.print(NewLine(count))