Conditions | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
1 | # This program is free software: you can redistribute it and/or modify it |
||
23 | def main(): |
||
24 | console_printer = ConsolePrinter() |
||
25 | partial_print_sec_beg = functools.partial( |
||
26 | print_section_beginning, |
||
27 | console_printer) |
||
28 | results, exitcode, _ = run_coala( |
||
29 | autoapply=False, |
||
30 | print_results=print_results_no_input, |
||
31 | print_section_beginning=partial_print_sec_beg) |
||
32 | |||
33 | return exitcode |
||
34 |