Conditions | 1 |
Total Lines | 14 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | """ |
||
16 | 1 | def __init__(self, input: Input, output: Output): |
|
17 | """ |
||
18 | Object constructor. |
||
19 | |||
20 | :param Input input: The input object. |
||
21 | :param Output output: The output object. |
||
22 | """ |
||
23 | 1 | CleoStyle.__init__(self, input, output) |
|
24 | |||
25 | # Create style notes. |
||
26 | 1 | output.get_formatter().add_style('note', 'yellow', None, ['bold']) |
|
27 | |||
28 | # Create style for file and directory names. |
||
29 | 1 | output.get_formatter().add_style('fso', 'white', None, ['bold']) |
|
30 | |||
42 |