()
| 47 | |
| 48 | |
| 49 | def create_source_paths_program() -> ArgumentParser: |
| 50 | program = ArgumentParser(add_help = False) |
| 51 | group_paths = program.add_argument_group('paths') |
| 52 | group_paths.add_argument('-s', '--source-paths', help = translator.get('help.source_paths'), default = config.get_str_list('paths', 'source_paths'), nargs = '+') |
| 53 | job_store.register_step_keys([ 'source_paths' ]) |
| 54 | return program |
| 55 | |
| 56 | |
| 57 | def create_target_path_program() -> ArgumentParser: |