| Conditions | 1 |
| Total Lines | 5 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/env python |
||
| 8 | def get_cli_arguments(): |
||
| 9 | parser = argparse.ArgumentParser(description='Reports on topic-modeling datasets', formatter_class=argparse.ArgumentDefaultsHelpFormatter) |
||
| 10 | parser.add_argument('--details', '-d', dest='details', default=False, action='store_true', help='Switch to show details about the datasets') |
||
| 11 | parser.add_argument('--select-dataset', '-s', dest='dataset_label', help='Whether to show information about a specific dataset only.') |
||
| 12 | return parser.parse_args() |
||
| 13 | |||
| 40 |