Conditions | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python3 |
||
11 | def main(args={}): |
||
12 | """ |
||
13 | Main entry point for the command line. Parse the arguments and call to the main process. |
||
14 | :param args: |
||
15 | :return: |
||
16 | """ |
||
17 | args = get_arguments(args) |
||
18 | illuminate.Lighthouse( |
||
19 | verbose=args.verbose, |
||
20 | config_file=args.config, |
||
21 | clear=args.clear |
||
22 | ) |
||
50 |