Conditions | 1 |
Total Lines | 12 |
Code Lines | 3 |
Lines | 12 |
Ratio | 100 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | # ---------------------------------------------------------------------------------------------------------------------- |
||
14 | 1 | def __init__(self, io: IO): |
|
15 | """ |
||
16 | Object constructor. |
||
17 | """ |
||
18 | |||
19 | 1 | self._io: IO = io |
|
20 | """ |
||
21 | Styled output formatter. |
||
22 | """ |
||
23 | |||
24 | 1 | self._errors: int = 0 |
|
25 | 1 | """ |
|
26 | The error count. |
||
56 |