| Conditions | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python3 |
||
| 8 | def print_header(mute): |
||
| 9 | """ |
||
| 10 | Printing console header |
||
| 11 | :param mute: Boolean |
||
| 12 | :return: |
||
| 13 | """ |
||
| 14 | if mute is False: |
||
| 15 | print(output.CliFormat.BLACK + '##############################################' + output.CliFormat.ENDC) |
||
| 16 | print(output.CliFormat.BLACK + '# #' + output.CliFormat.ENDC) |
||
| 17 | print( |
||
| 18 | output.CliFormat.BLACK + '#' + output.CliFormat.ENDC + ' FILE SYNC TOOL ' + output.CliFormat.BLACK + '#' + output.CliFormat.ENDC) |
||
| 19 | print(output.CliFormat.BLACK + '# v' + info.__version__ + ' #' + output.CliFormat.ENDC) |
||
| 20 | print(output.CliFormat.BLACK + '# ' + info.__homepage__ + ' #' + output.CliFormat.ENDC) |
||
| 21 | print(output.CliFormat.BLACK + '# #' + output.CliFormat.ENDC) |
||
| 22 | print(output.CliFormat.BLACK + '##############################################' + output.CliFormat.ENDC) |
||
| 23 | |||
| 37 | ) |
||