Conditions | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | """ |
||
19 | 1 | def __init__(self, io, options, argument): |
|
20 | """ |
||
21 | Object constructor. |
||
22 | |||
23 | :param None|cleo.styles.output_style.OutputStyle io: The IO object. |
||
24 | :param dict[str,str] options: The options of this section. |
||
25 | :param str argument: The title of this section. |
||
26 | """ |
||
27 | 1 | super().__init__(io, 'sub2section', options, argument) |
|
28 | |||
51 |