Conditions | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | """ |
||
27 | 1 | def __set_style(self): |
|
28 | """ |
||
29 | Sets the output format style used by SDoc. |
||
30 | """ |
||
31 | # Style for file system objects (e.g. file and directory names). |
||
32 | 1 | self.set_style('fso', fg='green', options=['bold']) |
|
33 | |||
34 | # Style for errors. |
||
35 | 1 | self.set_style('error', fg='red', options=['bold']) |
|
36 | |||
37 | # Style for SDoc1 notices. |
||
38 | 1 | self.set_style('notice', fg='yellow') |
|
39 | |||
51 |