Conditions | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1.125 |
Changes | 1 | ||
Bugs | 0 | Features | 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 the version. |
||
25 | :param str argument: |
||
26 | """ |
||
27 | super().__init__(io, 'version', options, argument) |
||
28 | |||
67 |