Conditions | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python3 |
||
22 | def print_footer(): |
||
23 | """ |
||
24 | Printing console footer |
||
25 | :return: |
||
26 | """ |
||
27 | if 'errors' in system.config: |
||
28 | output.println(f'{output.Subject.WARNING} Errors occurred during execution, see console output for more information') |
||
29 | else: |
||
30 | output.println(f'{output.Subject.OK} Successfully fetched lighthouse data') |
||
31 | |||
43 |