Path 1: 15 calls (1.0)

4 (6) 6 (3) 5 (3) 2 (3)

None (15)

1 (15)

0 (12) 1 (3)

['', 'now', 'previous', 'difference', 'nb duplicated lines', '0', 'NC', 'NC', 'percent duplicated lines', '0.000', 'NC', 'NC'] (3) ['type', 'number', ...

1def __init__(
2        self,
3        cols: int,
4        title: str | None = None,
5        rheaders: int = 0,
6        cheaders: int = 0,
7        children: Iterable[Text | str] = (),
8    ) -> None:
9        super().__init__(children=children)
10        assert isinstance(cols, int)
11        self.cols = cols
12        self.title = title
13        self.rheaders = rheaders
14        self.cheaders = cheaders