| Conditions | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python3 |
||
| 8 | def print_header(): |
||
| 9 | """ |
||
| 10 | Printing console header |
||
| 11 | :return: |
||
| 12 | """ |
||
| 13 | print(f'{output.CliFormat.BLACK}#################################################{output.CliFormat.ENDC}') |
||
| 14 | print(f'{output.CliFormat.BLACK}# #{output.CliFormat.ENDC}') |
||
| 15 | print(f'{output.CliFormat.BLACK}#{output.CliFormat.ENDC} LIGHTHOUSE GARDEN {output.CliFormat.BLACK}#{output.CliFormat.ENDC}') |
||
| 16 | print(f'{output.CliFormat.BLACK}# v{info.__version__} #{output.CliFormat.ENDC}') |
||
| 17 | print(f'{output.CliFormat.BLACK}# {info.__homepage__} #{output.CliFormat.ENDC}') |
||
| 18 | print(f'{output.CliFormat.BLACK}# #{output.CliFormat.ENDC}') |
||
| 19 | print(f'{output.CliFormat.BLACK}#################################################{output.CliFormat.ENDC}') |
||
| 20 | |||
| 43 |