()
| 63 | |
| 64 | |
| 65 | def create_output_path_program() -> ArgumentParser: |
| 66 | program = ArgumentParser(add_help = False) |
| 67 | group_paths = program.add_argument_group('paths') |
| 68 | group_paths.add_argument('-o', '--output-path', help = translator.get('help.output_path'), default = config.get_str_value('paths', 'output_path')) |
| 69 | job_store.register_step_keys([ 'output_path' ]) |
| 70 | return program |
| 71 | |
| 72 | |
| 73 | def create_source_pattern_program() -> ArgumentParser: |