Conditions | 1 |
Total Lines | 9 |
Code Lines | 2 |
Lines | 9 |
Ratio | 100 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | 1 | from typing import Dict |
|
15 | 1 | def __init__(self, io: IO, options: Dict[str, str], argument: str): |
|
16 | """ |
||
17 | Object constructor. |
||
18 | |||
19 | :param OutputStyle io: The IO object. |
||
20 | :param dict[str,str] options: The options of this section. |
||
21 | :param str argument: The title of this section. |
||
22 | """ |
||
23 | 1 | super().__init__(io, 'section', options, argument) |
|
24 | |||
42 |