()
| 55 | |
| 56 | |
| 57 | def create_target_path_program() -> ArgumentParser: |
| 58 | program = ArgumentParser(add_help = False) |
| 59 | group_paths = program.add_argument_group('paths') |
| 60 | group_paths.add_argument('-t', '--target-path', help = translator.get('help.target_path'), default = config.get_str_value('paths', 'target_path')) |
| 61 | job_store.register_step_keys([ 'target_path' ]) |
| 62 | return program |
| 63 | |
| 64 | |
| 65 | def create_output_path_program() -> ArgumentParser: |